n8n
Version:
n8n Workflow Automation Tool
15 lines (14 loc) • 585 B
TypeScript
import { Logger } from '@n8n/backend-common';
import { AgentChatIntegration, type AgentChatIntegrationContext } from '../agent-chat-integration';
export declare class LinearIntegration extends AgentChatIntegration {
private readonly logger;
readonly type = "linear";
readonly credentialTypes: string[];
readonly displayLabel = "Linear";
readonly displayIcon = "linear";
constructor(logger: Logger);
createAdapter(ctx: AgentChatIntegrationContext): Promise<unknown>;
private extractAuth;
private extractSigningSecret;
private fetchDisplayName;
}