@luka-cat-mimi/n8n-nodes-feishu-project
Version:
飞书项目 N8N 集成插件,支持附件管理等功能
14 lines (13 loc) • 570 B
TypeScript
import { IAuthenticateGeneric, ICredentialTestRequest, ICredentialDataDecryptedObject, ICredentialType, IHttpRequestHelper, INodeProperties } from 'n8n-workflow';
export declare class FeishuProjectApi implements ICredentialType {
name: string;
displayName: string;
documentationUrl: string;
icon: string;
properties: INodeProperties[];
authenticate: IAuthenticateGeneric;
preAuthentication(this: IHttpRequestHelper, credentials: ICredentialDataDecryptedObject): Promise<{
pluginToken: any;
}>;
test: ICredentialTestRequest;
}