UNPKG

@sendbird/uikit-react

Version:

Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.

8 lines (7 loc) 246 B
/** * Note: `leading` has higher priority rather than `trailing` * */ export declare function useThrottleCallback<T extends (...args: any[]) => void>(callback: T, delay: number, options?: { leading?: boolean; trailing?: boolean; }): T;