deno.land / x / yargs@v17.6.0-deno / test / esm / fixtures / commands / subcommands / d.mjs
12345678export const command = 'd <x> <y>';export const describe = 'multiply x by y';// eslint-disable-next-line no-unused-varsexport const builder = yargs => {};export const handler = function (argv) { argv.output.value = argv.x * argv.y;};
Version Info