Compile PDF and EPUB files from static Web assets.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

vor 8 Monaten
12345678910111213141516171819202122
  1. import { Cli } from './packages/cli-wrapper';
  2. import { AdderController, AdderControllerImpl } from './modules/adder';
  3. export const addCommands = (cli: Cli) => {
  4. const adderController: AdderController = new AdderControllerImpl();
  5. return cli
  6. .command({
  7. aliases: ['a'],
  8. command: 'add',
  9. parameters: ['<a> <b>'],
  10. describe: 'Add two numbers',
  11. handler: adderController.addNumbers,
  12. })
  13. .command({
  14. aliases: ['s'],
  15. command: 'subtract',
  16. parameters: ['<a> <b>'],
  17. describe: 'Subtract two numbers',
  18. handler: adderController.subtractNumbers,
  19. });
  20. };