diff --git a/src/utils/command.ts b/src/utils/command.ts index 24ab22c..4e963ee 100644 --- a/src/utils/command.ts +++ b/src/utils/command.ts @@ -1,12 +1,10 @@ import { MessageMentions } from '../structures/messageMentions.ts' export type CommandArgumentMatchTypes = 'flag' | 'mention' | 'content' | 'rest' -export interface Args { +export interface Args { name: string match: CommandArgumentMatchTypes - // Still needs to be implemented - // type?: unknown - defaultValue?: unknown + defaultValue?: T flag?: string }