Files
opencode-krates-connector/client/node_modules/lib0/diff/patience.d.ts
Hermes Agent 6bc05a76b0 fix: Resolve TypeScript errors
Signed-off-by: Hermes Agent <hermes@nosuchhost>
2026-06-16 09:01:21 -04:00

16 lines
440 B
TypeScript

export function diff(as: Array<string>, bs: Array<string>): Array<{
index: number;
remove: Array<string>;
insert: Array<string>;
}>;
export function diffSplitBy(a: string, b: string, _regexp: RegExp | string): {
index: number;
remove: string;
insert: string;
}[];
export function diffAuto(a: string, b: string): {
insert: string;
remove: string;
index: number;
}[];
//# sourceMappingURL=patience.d.ts.map