spa/.claude/skills/thread-manager/dist/tools/get-current-thread.d.ts

10 lines
435 B
TypeScript

import { ToolDefinition, ToolInvocation } from '../types';
import { ThreadManager } from '../core/thread-manager';
export declare const toolDefinition: ToolDefinition;
export declare const toolHandler: (invocation: ToolInvocation, threadManager: ThreadManager) => Promise<{
message: string;
thread?: import("../types").Thread;
messages?: import("../types").Message[];
fileChanges?: import("../types").FileChange[];
}>;