Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Flag<T>

A command flag.

Type Parameters

Hierarchy

Implements

Index

Constructors

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 = DataType.String

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 = false

Whether the option is required or not.

matchPattern: null | RegExp = null

A regular expression to validate values for this option.

maxLength: number = Infinity

The max length of this option value.

maxWords: number

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

minLength: number = 0

The min length of this option value.

minWords: number = 0

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.

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.

type: OptionType = OptionType.Flag

The type of this option.

Accessors

  • get length(): number
  • get raw(): string
  • get words(): number

Methods

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