AdminLTE/plugins/filterizr/utils/debounce.d.ts
REJack e3888aee85
created new gallery page
- added filterizr to plugins
- created gallery demo
2019-08-28 11:42:16 +02:00

5 lines
132 B
TypeScript
Executable file

/**
* Debounce of Underscore.js
*/
export declare const debounce: (func: Function, wait: number, immediate: boolean) => Function;