@mineru98/n8n-ko
Version:
n8n Workflow Automation Tool - Korean Version
18 lines (17 loc) • 610 B
TypeScript
import { GlobalConfig } from '@n8n/config';
import type { IUser } from 'n8n-workflow';
import { License } from '../license';
import { NodeTypes } from '../node-types';
export declare class WorkflowBuilderService {
private readonly nodeTypes;
private readonly license;
private readonly config;
private service;
constructor(nodeTypes: NodeTypes, license: License, config: GlobalConfig);
private getService;
chat(payload: {
question: string;
}, user: IUser): AsyncGenerator<{
messages: import("@n8n/ai-workflow-builder").MessageResponse[];
}, void, unknown>;
}