Skip to content

upsertCommandAlias

upsertCommandAlias(aliases, alias): readonly CommandAlias[]

Defined in: domain/cli/command-alias.ts:62

Alias一覧へaliasを後勝ちで追加します。

readonly CommandAlias[]

追加前alias一覧です。

CommandAlias

追加するaliasです。

readonly CommandAlias[]

追加後alias一覧です。

const result = upsertCommandAlias([{ name: "c", command: "clear" }], {
name: "c",
command: "cd /Work",
});

Last updated: