UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

14 lines 781 B
import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeBaseDescription, INodeTypeDescription } from 'n8n-workflow'; export declare class MicrosoftExcelV1 implements INodeType { description: INodeTypeDescription; constructor(baseDescription: INodeTypeBaseDescription); methods: { loadOptions: { getWorkbooks(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getworksheets(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; getTables(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; } //# sourceMappingURL=MicrosoftExcelV1.node.d.ts.map