{"version":3,"file":"show-font-command.mjs","names":[],"sources":["../../src/commands/show-font-command.ts"],"sourcesContent":["import { type Command, Option } from 'commander';\n\nimport { cmdIntParser } from './cmd-int-parser.js';\nimport { showFontAction } from '../actions/index.js';\n\nexport const showFontCommand = (fontCmd: Command) => {\n  fontCmd\n    .command('show')\n    .argument('<num>', 'font number', cmdIntParser)\n    .addOption(new Option('-i, --input <fn>', 'input FONT.xxx file'))\n    .addOption(\n      new Option('-o, --output <fn>', 'output filename, \"-\" for STDOUT'),\n    )\n    .addOption(\n      new Option('--aspect-ratio', 'aspect ratio correction, scale to 5:6'),\n    )\n    .action(showFontAction);\n};\n"],"mappings":";;;;;AAKA,MAAa,mBAAmB,YAAqB;CACnD,QACG,QAAQ,MAAM,CAAC,CACf,SAAS,SAAS,eAAe,YAAY,CAAC,CAC9C,UAAU,IAAI,OAAO,oBAAoB,qBAAqB,CAAC,CAAC,CAChE,UACC,IAAI,OAAO,qBAAqB,mCAAiC,CACnE,CAAC,CACA,UACC,IAAI,OAAO,kBAAkB,uCAAuC,CACtE,CAAC,CACA,OAAO,cAAc;AAC1B"}