UNPKG

n8n-nodes-qwen

Version:

A user-friendly Qwen AI node, similar to OpenAI, designed to enhance your workflow. npm link: https://www.npmjs.com/package/n8n-nodes-qwen

11 lines (10 loc) 380 B
import type { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties, Icon } from 'n8n-workflow'; export declare class QwenApi implements ICredentialType { name: string; displayName: string; icon: Icon; documentationUrl: string; properties: INodeProperties[]; authenticate: IAuthenticateGeneric; test: ICredentialTestRequest; }