mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-23 06:55:43 -06:00
16 lines
309 B
JavaScript
16 lines
309 B
JavaScript
import commander from './index.js';
|
|
|
|
// wrapper to provide named exports for ESM.
|
|
export const {
|
|
program,
|
|
createCommand,
|
|
createArgument,
|
|
createOption,
|
|
CommanderError,
|
|
InvalidArgumentError,
|
|
InvalidOptionArgumentError, // deprecated old name
|
|
Command,
|
|
Argument,
|
|
Option,
|
|
Help
|
|
} = commander;
|