UNPKG

n8n

Version:

n8n Workflow Automation Tool

10 lines (9 loc) 370 B
import type { BuiltTool } from '@n8n/agents'; import type { BuilderTrackFn } from '../builder-config-telemetry'; export interface ConfigureChannelToolDeps { agentId: string; projectId: string; listChatIntegrationTypes: () => string[]; track: BuilderTrackFn; } export declare function buildConfigureChannelTool(deps: ConfigureChannelToolDeps): BuiltTool;