| 3 | import type DiffContext from './contexts/diff.js'; |
| 4 | |
| 5 | export interface Options { |
| 6 | objectHash?: (item: object, index?: number) => string | undefined; |
| 7 | matchByPosition?: boolean; |
| 8 | arrays?: { |
| 9 | detectMove?: boolean; |
| 10 | includeValueOnMove?: boolean; |
| 11 | }; |
| 12 | textDiff?: { |
| 13 | diffMatchPatch: typeof dmp; |
| 14 | minLength?: number; |
| 15 | }; |
| 16 | propertyFilter?: (name: string, context: DiffContext) => boolean; |
| 17 | cloneDiffValues?: boolean | ((value: unknown) => unknown); |
| 18 | } |
| 19 | |
| 20 | export type AddedDelta = [unknown]; |
| 21 | export type ModifiedDelta = [unknown, unknown]; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…