UNPKG

create-dxcli

Version:
11 lines (10 loc) 271 B
import Command, { flags } from '@dxcli/command'; export default abstract class AppCommand extends Command { static flags: flags.Input; static args: { name: string; required: boolean; }[]; abstract type: string; run(): Promise<void>; }