UNPKG

@enspirit/emb

Version:

A replacement for our Makefile-for-monorepos

18 lines (17 loc) 485 B
import { FlavoredCommand } from '../../index.js'; export type ImageInfo = { created: Date; imageId: string; name: string; size: number; tag: string; }; export default class ImagesIndex extends FlavoredCommand<typeof ImagesIndex> { static description: string; static enableJsonFlag: boolean; static examples: string[]; static flags: { all: import("@oclif/core/interfaces").BooleanFlag<boolean>; }; run(): Promise<Array<ImageInfo>>; }