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

7 lines
310 B
TypeScript

export declare function toHashlineContent(content: string): string;
export declare function generateUnifiedDiff(oldContent: string, newContent: string, filePath: string): string;
export declare function countLineDiffs(oldContent: string, newContent: string): {
additions: number;
deletions: number;
};