UNPKG

typescript-debounce-decorator

Version:
26 lines (21 loc) 581 B
export interface ICancel { (func: Function): void; } export interface IDebounceOptions { leading: boolean; } export interface IDebounceFactory { (options?: IDebounceOptions): ( target: Object, propertyKey: string, descriptor?: PropertyDescriptor ) => void; (debounceTime: number, options?: IDebounceOptions): ( target: Object, propertyKey: string, descriptor?: PropertyDescriptor ) => void; (target: Object, propertyKey: string, descriptor?: PropertyDescriptor): void; } export declare const debounce: IDebounceFactory; export declare const cancel: ICancel;