/** * Debounce the calling of a function * @param fn The function to be debounced * @param time How long to wait * @returns {Function} * * @signature * U.debounce(fn, time) * */ export declare function debounce(fn: Function, time: number): Function; //# sourceMappingURL=debounce.d.ts.map