11 lines
368 B
TypeScript
11 lines
368 B
TypeScript
import type { ToolContext } from "@opencode-ai/plugin/tool";
|
|
import { type RawHashlineEdit } from "./normalize-edits";
|
|
interface HashlineEditArgs {
|
|
filePath: string;
|
|
edits: RawHashlineEdit[];
|
|
delete?: boolean;
|
|
rename?: string;
|
|
}
|
|
export declare function executeHashlineEditTool(args: HashlineEditArgs, context: ToolContext): Promise<string>;
|
|
export {};
|