UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

12 lines 575 B
import type { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeBaseDescription, INodeTypeDescription } from 'n8n-workflow'; import { listSearch, loadOptions } from './methods'; export declare class GoogleAnalyticsV2 implements INodeType { description: INodeTypeDescription; constructor(baseDescription: INodeTypeBaseDescription); methods: { loadOptions: typeof loadOptions; listSearch: typeof listSearch; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; } //# sourceMappingURL=GoogleAnalyticsV2.node.d.ts.map