UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

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