UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

10 lines 448 B
import { type IExecuteFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription } from 'n8n-workflow'; import * as listSearch from './methods/listSearch'; export declare class Databricks implements INodeType { description: INodeTypeDescription; methods: { listSearch: typeof listSearch; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; } //# sourceMappingURL=Databricks.node.d.ts.map