Files
n8n-nodes-gwezz-changdunovel/node_modules/@n8n/tournament/dist/FunctionEvaluator.d.ts
2025-10-26 23:10:15 +08:00

9 lines
311 B
TypeScript

import type { ExpressionEvaluator, ReturnValue, Tournament } from '.';
export declare class FunctionEvaluator implements ExpressionEvaluator {
private instance;
private _codeCache;
constructor(instance: Tournament);
private getFunction;
evaluate(expr: string, data: unknown): ReturnValue;
}