UNPKG

n8n

Version:

n8n Workflow Automation Tool

9 lines (8 loc) 303 B
import type { IDataObject } from 'n8n-workflow'; export declare class EvaluationMetrics { private readonly metricNames; private readonly rawMetricsByName; constructor(metricNames: Set<string>); addResults(result: IDataObject): void; getAggregatedMetrics(): Record<string, number>; }