@bedrijfsdatanl/n8n-nodes-prospectpro
Version:
n8n node for ProspectPro - Identify Dutch B2B ProspectPro in rapid time
14 lines (13 loc) • 599 B
TypeScript
import type { IPollFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
import { getProspectProTags, getProspectProAudiences, getProspectProOwners } from './GenericFunctions';
export declare class ProspectproTrigger implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getTags: typeof getProspectProTags;
getAudiences: typeof getProspectProAudiences;
getOwners: typeof getProspectProOwners;
};
};
poll(this: IPollFunctions): Promise<INodeExecutionData[][] | null>;
}