| 26 | export type ArrayChange<T> = ChangeObject<T[]>; |
| 27 | |
| 28 | export interface CommonDiffOptions { |
| 29 | /** |
| 30 | * If `true`, the array of change objects returned will contain one change object per token (e.g. one per line if calling `diffLines`), instead of runs of consecutive tokens that are all added / all removed / all conserved being combined into a single change object. |
| 31 | */ |
| 32 | oneChangePerToken?: boolean, |
| 33 | } |
| 34 | |
| 35 | export interface TimeoutOption { |
| 36 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected