Added functions module

This commit is contained in:
Kir_Antipov 2022-12-05 08:05:45 +00:00
parent 7b75d612db
commit ce5227a2ce

View file

@ -0,0 +1,4 @@
export { Func } from "./func";
export { Callable, makeCallable } from "./callable";
export { AsyncFunc } from "./async-func";
export { Middleware, MiddlewareHandler } from "./middleware";