问答详情
源自:2-13 commander注册命令的两种高级用法

“(str: string, argsDescription: Record<string, string>): Command”已弃用。ts(6385) index.d.ts(728, 7): 该声明曾在此处标记为已弃用。

program

  .arguments("<cmd> [options]")

  .description("test command", {

    cmd: "command to run",

    options: "options for command",

  })

  .action(function (cmd, options) {

    console.log(options, cmd);

  });


提问者:weixin_慕桂英5024868 2024-03-06 16:35

个回答