UNPKG

create-dxcli

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