refactor(types/handler.ts): remove nullish type, never used

This commit is contained in:
jacoobes
2022-02-18 11:27:56 -06:00
parent 6a36f9300e
commit 21fe7534af

View File

@@ -14,7 +14,6 @@ export type Visibility = 'private' | 'public';
// Anything that can be sent in a `<TextChannel>#send` or `<CommandInteraction>#reply`
export type possibleOutput<T = string> = T | (MessagePayload & MessageOptions);
export type Nullable<T> = T | null;
export type execute = Sern.Module<unknown>['execute'];
export type ParseType<T> = {