export function simpleDiffString(a: string, b: string): SimpleDiff; export function simpleDiff(a: string, b: string): SimpleDiff; export function simpleDiffArray(a: T[], b: T[], compare?: ((arg0: T, arg1: T) => boolean) | undefined): SimpleDiff; export function simpleDiffStringWithCursor(a: string, b: string, cursor: number): { index: number; remove: number; insert: string; }; /** * A SimpleDiff describes a change on a String. * * ```js * console.log(a) // the old value * console.log(b) // the updated value * // Apply changes of diff (pseudocode) * a.remove(diff.index, diff.remove) // Remove `diff.remove` characters * a.insert(diff.index, diff.insert) // Insert `diff.insert` * a === b // values match * ``` */ export type SimpleDiff = { /** * The index where changes were applied */ index: number; /** * The number of characters to delete starting * at `index`. */ remove: number; /** * The new text to insert at `index` after applying * `delete` */ insert: T; }; //# sourceMappingURL=diff.d.ts.map