baldrick-broth
Version:
Build automation tool and task runner
11 lines (10 loc) • 516 B
TypeScript
import type { AnyCommand, Ctx } from './build-model.js';
import { type LogMessage } from './log-model.js';
import { type Result } from './railway.js';
type BasicExecution = Result<Ctx, LogMessage>;
export declare const basicCommandExecution: (memoryId: string, ctx: Ctx, anyCommand: AnyCommand, extra: Record<string, any>) => BasicExecution;
/**
* Mostly used for testing purpose
*/
export declare const basicCommandsExecution: (memoryId: string, ctx: Ctx, anyCommands: AnyCommand[]) => BasicExecution;
export {};