Skip to content

expandSubmittedCommandAbbreviation

expandSubmittedCommandAbbreviation(inputValue, commandAbbreviations): string

Defined in: domain/cli/command-abbreviation.ts:125

確定入力をcommand abbreviation展開します。

string

CLI入力値です。

readonly CommandAlias[]

command abbreviation一覧です。

string

展開後の入力値です。

const result = expandSubmittedCommandAbbreviation("g stripe", [{ name: "g", command: "go" }]);
// "go stripe"

Last updated: