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

11 lines
434 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<{
success: boolean;
thread?: import("../types").Thread;
messages?: import("../types").Message[];
message: string;
launchCommand?: string;
}>;