datatables.net-plugins
Version:
Various small plug-ins for DataTables including feature, ordering, search and internationalisation plug-ins.
29 lines (23 loc) • 507 B
TypeScript
import DataTables, {ColumnSelector} from 'datatables.net';
export default DataTables;
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* DataTables' types integration
*/
declare module 'datatables.net' {
interface Config {
fuzzySearch?:
| boolean
| {
columns?: ColumnSelector;
rankColumn?: number;
threshold?: number;
toggleSmart?: boolean;
};
}
interface State {
_fuzzySearch: {
active: 'true' | 'false';
val: any;
};
}
}