chore: removed Nullable type

This commit is contained in:
EvolutionX
2022-02-19 20:11:28 +05:30
committed by GitHub
parent f6b85d8763
commit 92c3bacd15

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'];
// Thanks @cursorsdottsx
export type ParseType<T> = {