UNPKG

@enspirit/emb

Version:

A replacement for our Makefile-for-monorepos

15 lines (14 loc) 484 B
import { BaseCommand } from '../index.js'; export default class RestartComand extends BaseCommand { static description: string; static enableJsonFlag: boolean; static examples: string[]; static flags: { 'no-deps': 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>; }