I'm trying to add the e.g. responsive property into e.g. interface Settings from e.g. node_modules/@types/datatables.net/index.d.ts:
declare namespace DataTables {
...
interface Settings {
...
My project is based on https://github.com/gdi2290/angular-starter and I want to use that property with datatables.net-responsive-bs4 which implements it.
Q: How would I write the declaration for adding the responsive property?
PS: I'm specifically interesting in learning how to write that kind of declaration into my project