datatables.net-plugins
Version:
Various small plug-ins for DataTables including feature, ordering, search and internationalisation plug-ins.
13 lines (12 loc) • 404 B
TypeScript
/*! © SpryMedia Ltd - datatables.net/license */
declare module 'datatables.net' {
interface DataTablesStatic {
/** Automatically alter the DataTables page length to fit the table into a container */
PageResize(settings: any, pageResizeManualDelta: boolean): void;
}
interface Config {
pageResize?: boolean;
pageResizeManualDelta?: boolean;
}
}
export {};