diff --git a/src/utils/types.ts b/src/utils/types.ts index 587ce77..027b0f6 100644 --- a/src/utils/types.ts +++ b/src/utils/types.ts @@ -24,14 +24,14 @@ export type Usage = { export type Command = { name: string; description: string; - aliases: string[]; - module: string; - cooldown: number; - guild: boolean; - dev: boolean; - nsfw: boolean; - AuthorPermissions: string; - hidden: boolean; + aliases?: string[]; + module?: string; + cooldown?: number; + guild?: boolean; + dev?: boolean; + nsfw?: boolean; + AuthorPermissions?: string | string[]; + hidden?: boolean; } export type Context = {