UNPKG

@onesy/utils

Version:
8 lines (7 loc) 220 B
import { TMethod } from './models'; interface IDebounceMethod { (...args: any[]): any; clear: () => void; } declare const debounce: (method_: TMethod, delay?: number) => IDebounceMethod; export default debounce;