n8n
Version:
n8n Workflow Automation Tool
9 lines (8 loc) • 509 B
TypeScript
import type { AgentKnowledgeCommandService } from '../../agent-knowledge-command.service';
import { type WorkspaceFiles } from './file-references';
import type { ParsedSearchKnowledgeInput, SearchKnowledgeOutput } from './schemas';
type ReadInput = Extract<ParsedSearchKnowledgeInput, {
operation: 'read';
}>;
export declare function runReadOperation(input: ReadInput, workspaceRoot: string, files: WorkspaceFiles, commandService: AgentKnowledgeCommandService): Promise<SearchKnowledgeOutput>;
export {};