n8n-nodes-feishu-lark
Version:
n8n custom nodes for n8n to interact with Feishu/Lark, including Lark Bot, Lark MCP, and Lark Trigger.
11 lines (10 loc) • 345 B
TypeScript
import { Icon, ICredentialType, INodeProperties } from 'n8n-workflow';
import { Credentials } from '../nodes/help/type/enums';
export declare class LarkOAuth2Api implements ICredentialType {
name: Credentials;
displayName: string;
extends: string[];
icon: Icon;
documentationUrl: string;
properties: INodeProperties[];
}