UNPKG

@enspirit/emb

Version:

A replacement for our Makefile-for-monorepos

15 lines (14 loc) 568 B
import { Writable } from 'node:stream'; import * as z from 'zod'; import { AbstractOperation } from '../../../operations/index.js'; declare const schema: z.ZodObject<{ command: z.ZodString; env: z.ZodOptional<z.ZodObject<{}, z.core.$catchall<z.ZodString>>>; service: z.ZodString; }, z.core.$strip>; export declare class ComposeExecOperation extends AbstractOperation<typeof schema, void> { protected out?: Writable | undefined; constructor(out?: Writable | undefined); protected _run(input: z.input<typeof schema>): Promise<void>; } export {};