UNPKG

@mantine/hooks

Version:

A collection of 50+ hooks for state and UI management

7 lines (6 loc) 212 B
export declare function useTimeout(callback: (...callbackParams: any[]) => void, delay: number, options?: { autoInvoke: boolean; }): { start: (...callbackParams: any[]) => void; clear: () => void; };