UNPKG

@enspirit/emb

Version:

A replacement for our Makefile-for-monorepos

12 lines (11 loc) 420 B
import * as z from 'zod'; import { AbstractOperation } from '../../../operations/index.js'; declare const schema: z.ZodObject<{ shell: z.ZodOptional<z.ZodDefault<z.ZodString>>; service: z.ZodString; }, z.core.$strip>; export declare class ComposeExecShellOperation extends AbstractOperation<typeof schema, void> { constructor(); protected _run(input: z.input<typeof schema>): Promise<void>; } export {};