Files
oh-my-opencode/dist/tools/hashline-edit/hashline-edit-executor.d.ts
T
2026-03-14 04:56:50 +00:00

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 {};