forgeplus-react/node_modules/ahooks/lib/useLockFn/index.d.ts

3 lines
172 B
TypeScript

declare function useLockFn<P extends any[] = any[], V extends any = any>(fn: (...args: P) => Promise<V>): (...args: P) => Promise<V | undefined>;
export default useLockFn;