From a83a0635a4ee43261ed5df1dcfbbf647ae1a9424 Mon Sep 17 00:00:00 2001 From: jacoobes Date: Fri, 4 Feb 2022 00:41:27 -0600 Subject: [PATCH] created new SlashOptions wrap type --- src/types/handler/handler.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/types/handler/handler.ts b/src/types/handler/handler.ts index 4c0c2d0..b061215 100644 --- a/src/types/handler/handler.ts +++ b/src/types/handler/handler.ts @@ -26,5 +26,7 @@ export type Context = { } export type ParseType = { text : [arg: string]; - slash : [options : Omit] + slash : [SlashOptions] }; + +export type SlashOptions = Omit; \ No newline at end of file