UNPKG

@jjordy/swr-devtools

Version:

Devtools for SWR

9 lines (8 loc) 306 B
export declare function useWindowSize(options?: { throttleMs?: number; }): { width: number; height: number; }; export declare function throttle<T extends (...args: any[]) => void>(func: T, threshold?: number, scope?: any): T; export declare function usePrevious(value: any): undefined;