UNPKG

baldrick-broth

Version:
9 lines (8 loc) 373 B
import { type BatchStepModel, type Ctx } from './build-model.js'; import { type CommandLineInput } from './execution.js'; import { type Result } from './railway.js'; type ExpandedCommandLineInputs = Result<CommandLineInput[], { messages: string[]; }>; export declare const expandBatchStep: (ctx: Ctx, batchStep: BatchStepModel) => ExpandedCommandLineInputs; export {};