baldrick-broth
Version:
Build automation tool and task runner
9 lines (8 loc) • 373 B
TypeScript
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 {};