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

9 lines
368 B
TypeScript

import type { HashlineEdit } from "./types";
export interface HashlineApplyReport {
content: string;
noopEdits: number;
deduplicatedEdits: number;
}
export declare function applyHashlineEditsWithReport(content: string, edits: HashlineEdit[]): HashlineApplyReport;
export declare function applyHashlineEdits(content: string, edits: HashlineEdit[]): string;