@inkline/inkline
Version:
Inkline is the Vue.js UI/UX Library built for creating your next design system
11 lines (10 loc) • 356 B
TypeScript
/**
* Creates a debounced function that delays invoking `func` until after `wait`
* milliseconds have elapsed since the last time the debounced function was
* invoked, or until the next browser frame is drawn.
*
* @param fn
* @param delay
* @returns {Function}
*/
export declare function debounce(fn: any, delay: number): (...args: any[]) => void;