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