Files
oh-my-opencode/dist/tools/hashline-edit/diff-utils.d.ts
T

7 lines
310 B
TypeScript
Raw Normal View History

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