From 4d85c8928a9da9d2f3175a5c50995e94ef1f4616 Mon Sep 17 00:00:00 2001 From: jacoobes Date: Thu, 27 Jan 2022 11:27:23 -0600 Subject: [PATCH] adding Util import --- src/index.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index 775865c..99d246c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,6 @@ import { Sern } from "./handler/sern/sern"; +import { Utils } from "./handler/utils/preprocessors/args" - -module.exports = Sern; -export default Sern; \ No newline at end of file +module.exports.Sern = Sern; +module.exports.Utils = Utils; +export default { Sern, Utils }; \ No newline at end of file