cr-react-cli
Version:
Create react files with a single command
12 lines (11 loc) • 369 B
TypeScript
import { CommanderStatic } from 'commander';
import BaseCommand from './base.command';
import BaseHighCommand from './base.high.command';
declare class Commands {
private commands;
add(command: BaseHighCommand | BaseCommand): {
addSubCommand: (subCommand: BaseCommand) => any;
};
load(program: CommanderStatic): void;
}
export default Commands;