Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface IFlag<T>

A command flag.

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.

prefix: string

The full prefix of this flag that will overwrite parser options.

prefixAliases: string[]

The list of full prefix aliases for the flags.

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.

shortPrefix: string

The short prefix of this flag that will overwrite parser options.

shortPrefixAliases: string[]

The list of short prefix aliases for the flags.

suffix: string

The suffix of this flag. Flag parser options will overwrite this.

suffixAliases: string[]

The list of suffix aliases for the flags.

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