From 1cff46c0ab5959d8e0f0fe89f1e6cd4c6cebff19 Mon Sep 17 00:00:00 2001 From: jacoobes Date: Mon, 21 Feb 2022 00:44:52 -0600 Subject: [PATCH] fix(utilexports.ts): forgot to remove the deleted feat of option builder --- src/handler/utilities/utilsExports.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/handler/utilities/utilsExports.ts b/src/handler/utilities/utilsExports.ts index ab40e52..6c02f52 100644 --- a/src/handler/utilities/utilsExports.ts +++ b/src/handler/utilities/utilsExports.ts @@ -1,5 +1,4 @@ import * as Preprocessors from './preprocessors/args'; -import { Option as OptionBuilder } from './higherOrders'; -module.exports = { OptionBuilder, Preprocessors }; -export { OptionBuilder, Preprocessors }; \ No newline at end of file +module.exports = { Preprocessors }; +export { Preprocessors }; \ No newline at end of file