@enspirit/emb
Version:
A replacement for our Makefile-for-monorepos
13 lines (12 loc) • 404 B
TypeScript
import { BaseCommand } from '../index.js';
export default class StartCommand extends BaseCommand {
static description: string;
static enableJsonFlag: boolean;
static examples: string[];
static flags: {};
static args: {
component: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>;
};
static strict: boolean;
run(): Promise<void>;
}