UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

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