From 95cb57188a37f2796dff0fd0fc1e89cef9cb493f Mon Sep 17 00:00:00 2001 From: Orlando Date: Thu, 3 Oct 2024 16:02:54 +0100 Subject: [PATCH] one more --- src/types/Function.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/Function.ts b/src/types/Function.ts index 52edd13..86e3c8f 100644 --- a/src/types/Function.ts +++ b/src/types/Function.ts @@ -1,3 +1,5 @@ export type VoidFn = () => void; +export type AsyncVoidFn = Awaited; + export const noop: VoidFn = () => void 0;