n8n-nodes-base
Version:
Base nodes of n8n
17 lines • 1.01 kB
TypeScript
import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class Coda implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getDocs(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getTables(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getColumns(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getViews(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getFormulas(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getViewRows(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getViewColumns(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
//# sourceMappingURL=Coda.node.d.ts.map