UNPKG

@trlogic/tracker-web

Version:
6 lines (5 loc) 251 B
/** * Lightweight trailing-edge throttle for high-frequency DOM events. * Drops intermediate calls, only executes at most once per `intervalMs`. */ export declare function throttle<T extends (...args: any[]) => void>(fn: T, intervalMs: number): T;