UNPKG

datatables.net-plugins

Version:

Various small plug-ins for DataTables including feature, ordering, search and internationalisation plug-ins.

12 lines (11 loc) 335 B
/*! © SpryMedia Ltd - datatables.net/license */ declare module 'datatables.net' { interface DataTablesStatic { /** Automatically alter the DataTables page length to fit the table into a container */ ScrollResize(settings: any): void; } interface Config { scrollResize?: boolean; } } export {};