UNPKG

@enspirit/emb

Version:

A replacement for our Makefile-for-monorepos

18 lines (17 loc) 657 B
import { ImageInfo } from 'dockerode'; import * as z from 'zod'; import { AbstractOperation } from '../../../operations/index.js'; /** * https://docs.docker.com/reference/api/engine/version/v1.37/#tag/Image/operation/ImageList */ declare const schema: z.ZodOptional<z.ZodObject<{ all: z.ZodOptional<z.ZodBoolean>; filters: z.ZodOptional<z.ZodObject<{ label: z.ZodArray<z.ZodString>; }, z.core.$strip>>; }, z.core.$strip>>; export declare class ListImagesOperation extends AbstractOperation<typeof schema, Array<ImageInfo>> { constructor(); protected _run(input: z.input<typeof schema>): Promise<Array<ImageInfo>>; } export {};