Interface SimpleCommandOptions<T>

interface SimpleCommandOptions<T> {
    aliases?: string[];
    argSplitter?: ArgSplitter;
    botIds?: string[];
    description?: string;
    directMessage?: boolean;
    guilds?: IGuild[];
    name?: NotEmpty<T>;
    prefix?: IPrefix;
}

Type Parameters

  • T extends string = string

Properties

aliases?: string[]
argSplitter?: ArgSplitter
botIds?: string[]
description?: string
directMessage?: boolean
guilds?: IGuild[]
name?: NotEmpty<T>
prefix?: IPrefix