1
0
Files
sashinexists/node_modules/stubborn-fs/dist/attemptify.d.ts
2024-12-07 13:18:31 +11:00

4 lines
259 B
TypeScript

declare const attemptifyAsync: <FN extends Function>(fn: FN, onError: (error: unknown) => undefined) => FN;
declare const attemptifySync: <FN extends Function>(fn: FN, onError: (error: unknown) => undefined) => FN;
export { attemptifyAsync, attemptifySync };