n8n-nodes-feishu-lark
Version:
n8n custom nodes for n8n to interact with Feishu/Lark, including Lark Bot, Lark MCP, and Lark Trigger.
16 lines (15 loc) • 665 B
TypeScript
import { ICredentialDataDecryptedObject, ICredentialTestRequest, ICredentialType, IHttpRequestHelper, INodeProperties, Icon } from 'n8n-workflow';
import { IAuthenticateGeneric } from 'n8n-workflow';
import { Credentials } from '../nodes/help/type/enums';
export declare class LarkTokenApi implements ICredentialType {
name: Credentials;
displayName: string;
icon: Icon;
documentationUrl: string;
properties: INodeProperties[];
preAuthentication(this: IHttpRequestHelper, credentials: ICredentialDataDecryptedObject): Promise<{
accessToken: string;
}>;
authenticate: IAuthenticateGeneric;
test: ICredentialTestRequest;
}