UNPKG

@enspirit/emb

Version:

A replacement for our Makefile-for-monorepos

16 lines (15 loc) 515 B
import { BaseCommand } from '../../index.js'; export default class ComponentsLogs extends BaseCommand { static aliases: string[]; static description: string; static enableJsonFlag: boolean; static examples: string[]; static strict: boolean; static flags: { follow: import("@oclif/core/interfaces").BooleanFlag<boolean>; }; static args: { component: import("@oclif/core/interfaces").Arg<string | undefined, Record<string, unknown>>; }; run(): Promise<void>; }