UNPKG

n8n

Version:

n8n Workflow Automation Tool

11 lines (10 loc) 374 B
import type { EvalLlmMockHandler } from 'n8n-core'; interface MockHandlerOptions { scenarioHints?: string; globalContext?: string; nodeHints?: Record<string, string>; maxRetries?: number; } export declare function createLlmMockHandler(options?: MockHandlerOptions): EvalLlmMockHandler; export declare function buildDateAnchors(now: Date): string; export {};