@reactant/cli
Version:
13 lines (12 loc) • 360 B
TypeScript
import { Command, flags } from '@oclif/command';
export default class Start extends Command {
static description: string;
static examples: string[];
static strict: boolean;
static flags: flags.Input<any>;
static args: {
name: string;
required: boolean;
}[];
run(): Promise<import("@reactant/types").ActionResult>;
}