UNPKG

@geogirafe/lib-geoportal

Version:

GeoGirafe is a flexible application to build online geoportals.

8 lines (7 loc) 214 B
/** * @param {T} func The function to debounce. * @param {number} wait The wait time in ms. * @returns {T} The wrapper function. * @template T */ export declare function debounce<T>(func: T, wait: number): T;