@fengcch/n8n-nodes-302ai-chat
Version:
n8n community node for 302.ai AI service integration
11 lines (10 loc) • 465 B
TypeScript
import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription, INodePropertyOptions } from 'n8n-workflow';
export declare class ThreeZeroTwoAI implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getModels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}