UNPKG

baldrick-broth

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