UNPKG

@playbooks/hooks

Version:

A collection of React hooks for Playbooks.

7 lines (6 loc) 468 B
export declare const useDebounce: (value: any, delay: any) => any; export declare const useDelay: (method: any, listeners?: any[]) => boolean; export declare const useFocus: (listeners?: any[]) => import("react").MutableRefObject<any>; export declare const useInterval: (method: any, listeners?: any[]) => void; export declare const useLoaded: (method?: any, listeners?: any[]) => boolean; export declare const useMounted: (method: any, listeners?: any[]) => boolean;