From 21fe7534afd68a34f0d785b7921ea33dc8008e3b Mon Sep 17 00:00:00 2001 From: jacoobes Date: Fri, 18 Feb 2022 11:27:56 -0600 Subject: [PATCH] refactor(types/handler.ts): remove nullish type, never used --- src/types/handler.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/types/handler.ts b/src/types/handler.ts index 07fca97..20e13a2 100644 --- a/src/types/handler.ts +++ b/src/types/handler.ts @@ -14,7 +14,6 @@ export type Visibility = 'private' | 'public'; // Anything that can be sent in a `#send` or `#reply` export type possibleOutput = T | (MessagePayload & MessageOptions); -export type Nullable = T | null; export type execute = Sern.Module['execute']; export type ParseType = {