A regex-accessible command alias.

Note: regex-accessible aliases do not support custom prefixes, if you want a custom prefix, use the NameAccessibleCommandTypeAlias type instead.

interface RegExpAccessibleCommandTypeAlias {
    commandName: string;
    escregexp: EscRegExp;
    regexp: RegExp;
    type: "regexpAccessibleAlias";
}

Properties

commandName: string

The name of the command.

escregexp: EscRegExp

The raw regular expression used to access the command alias.

regexp: RegExp

The regular expression used to access the command alias.

type: "regexpAccessibleAlias"

The type of the command alias.