版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
309 B

  1. import commander from './index.js';
  2. // wrapper to provide named exports for ESM.
  3. export const {
  4. program,
  5. createCommand,
  6. createArgument,
  7. createOption,
  8. CommanderError,
  9. InvalidArgumentError,
  10. InvalidOptionArgumentError, // deprecated old name
  11. Command,
  12. Argument,
  13. Option,
  14. Help
  15. } = commander;