n8n-nodes-base
Version:
Base nodes of n8n
25 lines • 1.13 kB
TypeScript
import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription, INodeTypeBaseDescription } from 'n8n-workflow';
export declare class SeaTableV1 implements INodeType {
description: INodeTypeDescription;
constructor(baseDescription: INodeTypeBaseDescription);
methods: {
loadOptions: {
getTableNames(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getTableIds(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
getTableUpdateAbleColumns(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
getAllSortableColumns(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
getViews(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
//# sourceMappingURL=SeaTableV1.node.d.ts.map