n8n-ikaue-nodes
Version:
IKAUE nodes for N8N, such as a custom BigQuery node or a Google Search Console node.
14 lines (13 loc) • 676 B
TypeScript
import { IExecuteFunctions } from 'n8n-core';
import { ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class GoogleBigQueryIk implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getProjects(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getDatasets(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getTables(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}