UNPKG

nucleus-ui-builder

Version:
12 lines (11 loc) 403 B
import { CommandModule, Arguments, Argv } from 'yargs'; import CommandProcessor from '@commands/processor/command.processor'; export default class CommandScaffold implements CommandModule { private readonly processor; command: string; describe: string; private schema; constructor(processor: CommandProcessor); builder(cli: Argv): Argv<{}>; handler(argv: Arguments): void; }