UNPKG

baldrick-broth

Version:
12 lines (11 loc) 578 B
import { type AnyCommand, type Ctx } from './build-model.js'; export declare const getExpandedName: (name: string, context: any) => string; export declare const getStringFromTemplate: (hbsTemplate: string, context: any) => string; export declare const getCommandLines: (run: string, context: any) => string[]; export declare const getSingleCommandLine: (run: string, context: any) => string; export declare const mergeTemplateContext: ({ memoryId, ctx, extra, command, }: { memoryId: string; ctx: Ctx; extra: Record<string, any>; command: AnyCommand; }) => any;