UNPKG

@enspirit/emb

Version:

A replacement for our Makefile-for-monorepos

16 lines (15 loc) 437 B
import { FlavoredCommand } from '../../index.js'; export type ComponentInfo = { component: string; name?: string; id?: string; created?: string; status?: string; }; export default class ComponentsIndex extends FlavoredCommand<typeof ComponentsIndex> { static description: string; static enableJsonFlag: boolean; static examples: string[]; static flags: {}; run(): Promise<Array<ComponentInfo>>; }