some comments and comment refactoring

This commit is contained in:
jacoobes
2022-02-13 14:16:10 -06:00
parent c3d29f7016
commit ce22f854a1
3 changed files with 9 additions and 16 deletions

View File

@@ -11,7 +11,6 @@ import type {
import type * as Sern from '../handler/sern';
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;