Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Command

A command.

Hierarchy

  • Command

Implements

Index

Constructors

Properties

aliases: string[] = []

The command aliases.

description: string = ''

The command description.

examples: string[] = []

Example usage of this command.

name: string = ''

The command name.

options: IOption<InputData>[] = []

The list of command options.

shortDescription: string = ''

Shortened description of this command.

subcommands: Map<string, ICommand> = ...

Subcommands of this command.

title: string = ''

The command title.

Methods

  • addSubcommand(subcommand: ICommand): void
  • execute(...args: any[]): any
  • getOption<T>(Option: (new () => T)): null | T
  • Searches for an actual option instance by a class.

    Type Parameters

    Parameters

    • Option: (new () => T)

      Option class.

        • new (): T
        • Returns T

    Returns null | T

    Option instance or null if not found.

  • getValue<T>(Option: (new () => T)): ReturnType<T["getValue"]>
  • Tries to get current value of the specified option.

    Type Parameters

    Parameters

    • Option: (new () => T)

      Option class.

        • new (): T
        • Returns T

    Returns ReturnType<T["getValue"]>

    Current value or null.

  • getValueOrDefault<T>(Option: (new () => T)): ReturnType<T["getValueOrDefault"]>
  • Gets current or default value of the specified option.

    Type Parameters

    Parameters

    • Option: (new () => T)

      Option class.

        • new (): T
        • Returns T

    Returns ReturnType<T["getValueOrDefault"]>

    Current or default value of the option.

  • toString(): string