You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
560 B
TypeScript
20 lines
560 B
TypeScript
/*! © Ulises Gomez / Gravity Lending, SpryMedia Ltd - datatables.net/license */
|
|
declare module 'datatables.net' {
|
|
interface DataTablesStatic {
|
|
/** Add an input box that will remove matching items from the table */
|
|
ExcludeSearch(settings: any): void;
|
|
}
|
|
interface Config {
|
|
alphabet?: {
|
|
column: number;
|
|
caseSensitive: boolean;
|
|
numbers: boolean;
|
|
};
|
|
}
|
|
interface Api<T> {
|
|
/** Set an exclude term */
|
|
excludeSearch(searchTerm: string): Api<T>;
|
|
}
|
|
}
|
|
export {};
|