Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IOption<T>

A command option.

Type Parameters

Hierarchy

Implemented by

Index

Properties

aliases: string[]

The aliases for the full name of this option.

choices: T[]

Limited choices for this option. This will override min & max length.

dataType: DataType

The type of this option data at runtime.

defaultValue: T

Default value of this option.

description: string

Description of this option.

examples: string[]

Example of the possible values for this option.

expected: string

This is used to describe what kind of value is expected from this option.

isRequired: boolean

Whether the option is required or not.

length: number

Actual length of the option.

matchPattern: null | RegExp

A regular expression to validate values for this option.

maxLength: number

The max length of this option value.

maxWords: number

The max number of words possible to be considered as this option.

minLength: number

The min length of this option value.

minWords: number

The min number of words needed to be considered as this option.

name: string

Full name of this option.

raw: string

Raw argument value without double quotes.

separator: string

Trimmable custom key/value separator.

separatorAliases: string[]

The aliases for the option key/value separator.

shortAliases: string[]

The aliases for the short name of this option.

shortDescription: string

Shortened description of this option.

shortName: string

Shortened name of this option.

The type of this option.

words: number

Actual number of words of this option.

Methods

  • getDefaultValue(): T
  • getValue(): null | T
  • getValueOrDefault(): T
  • keys(): Generator<string, any, unknown>
  • setValue(value: null | T): void
  • toString(): string