UNPKG

baldrick-broth

Version:
11 lines (10 loc) 520 B
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, unknown>) => BasicExecution; /** * Mostly used for testing purpose */ export declare const basicCommandsExecution: (memoryId: string, ctx: Ctx, anyCommands: AnyCommand[]) => BasicExecution; export {};