UNPKG

@enspirit/emb

Version:

A replacement for our Makefile-for-monorepos

16 lines (15 loc) 586 B
import { Writable } from 'node:stream'; import * as z from 'zod'; import { AbstractOperation } from '../../../operations/index.js'; declare const schema: z.ZodObject<{ path: z.ZodString; script: z.ZodOptional<z.ZodString>; cwd: z.ZodOptional<z.ZodString>; force: z.ZodOptional<z.ZodBoolean>; }, z.core.$strip>; export declare class CreateFileOperation extends AbstractOperation<typeof schema, unknown> { protected out?: Writable | undefined; constructor(out?: Writable | undefined); protected _run(input: z.input<typeof schema>): Promise<void>; } export {};