UNPKG

firmament

Version:

Modularized shell for NodeJS CLI applications

15 lines (14 loc) 485 B
import { Command } from 'firmament-yargs'; import { ModuleManagement } from '../../interfaces/ModuleManagement'; export declare class ModuleManagementCommandImpl implements Command { private moduleManagement; aliases: string[]; command: string; commandDesc: string; handler: (argv: any) => void; options: any; subCommands: Command[]; constructor(moduleManagement: ModuleManagement); private buildCommandTree; private pushInstallModuleCommand; }