UNPKG

@grafana/faro-web-sdk

Version:

Faro instrumentations, metas, transports for web.

5 lines (4 loc) 214 B
/** * Tail based throttle which caches the args of the last call and updates */ export declare function throttle<T extends (...args: any[]) => void>(callback: T, delay: number): (...args: Parameters<T>) => void;