UNPKG

@etsoo/react

Version:

TypeScript ReactJs UI Independent Framework

6 lines (5 loc) 227 B
import { DelayedExecutorType } from "@etsoo/shared"; /** * Create delayed executor */ export declare function useDelayedExecutor<P extends any[]>(func: (...args: P) => void, delayMiliseconcs: number): DelayedExecutorType<P>;