import type { IDataObject } from 'n8n-workflow'; export type FilterFunction = (item: IDataObject, value: T[keyof T]) => boolean; export interface FilterMapping { [key: string]: FilterFunction; }