n8n
Version:
n8n Workflow Automation Tool
9 lines (8 loc) • 511 B
TypeScript
import type { DataTable } from '../../../../modules/data-table/data-table.entity';
import type { DataTableMatchingMode } from '../../n8n-packages.types';
import type { PackageDataTableRequirement } from '../../spec/requirements.schema';
export interface MatchCandidates {
projectId: string;
targetsById: ReadonlyMap<string, DataTable>;
}
export declare function matchTargetTable(mode: DataTableMatchingMode, requirement: PackageDataTableRequirement, candidates: MatchCandidates): DataTable | undefined;