Interface SimpleCommandOptionOptions<T>

interface SimpleCommandOptionOptions<T> {
    description?: string;
    name: NotEmpty<T>;
    type: SimpleCommandOptionType;
}

Type Parameters

  • T extends string = string

Properties

description?: string
name: NotEmpty<T>