I'm using DataTables in Typescript. All was going well, until....
I am using the Buttons extension and installed using npm from here:
npm install datatables.net-buttons
npm install datatables.net-buttons-dt
I have these imports in my code:
import 'datatables.net';
import 'datatables.net-buttons';
Although I am importing datatables-buttons, it causes errors when compiling.
**Object literal may only specify known properties, and 'buttons' does not exist in type 'Settings'.**
Shouldn't that be all I need for Typescript?