spa/.claude/skills/thread-manager/dist/tools/track-file-change.d.ts

13 lines
442 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;
fileChange: import("../types").FileChange;
message: string;
} | {
success: boolean;
message: any;
fileChange?: undefined;
}>;