From ce5227a2ce6bf5af2f02a30740e1337ccbc7b7ef Mon Sep 17 00:00:00 2001 From: Kir_Antipov Date: Mon, 5 Dec 2022 08:05:45 +0000 Subject: [PATCH] Added `functions` module --- src/utils/functions/index.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/utils/functions/index.ts diff --git a/src/utils/functions/index.ts b/src/utils/functions/index.ts new file mode 100644 index 0000000..ea033af --- /dev/null +++ b/src/utils/functions/index.ts @@ -0,0 +1,4 @@ +export { Func } from "./func"; +export { Callable, makeCallable } from "./callable"; +export { AsyncFunc } from "./async-func"; +export { Middleware, MiddlewareHandler } from "./middleware";