@enspirit/emb
Version:
A replacement for our Makefile-for-monorepos
15 lines (14 loc) • 527 B
TypeScript
import { BaseCommand } from '../../index.js';
export default class ComponentShellCommand extends BaseCommand {
static aliases: string[];
static description: string;
static enableJsonFlag: boolean;
static examples: string[];
static flags: {
shell: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
};
static args: {
component: import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>;
};
run(): Promise<void>;
}