UNPKG

271 BTypeScriptView Raw
1import Command, { flags } from '@dxcli/command';
2export default abstract class AppCommand extends Command {
3 static flags: flags.Input;
4 static args: {
5 name: string;
6 required: boolean;
7 }[];
8 abstract type: string;
9 run(): Promise<void>;
10}