(oldValue: T, newValue: T)
| 27 | export interface Differ<in out T, in out Patch> { |
| 28 | readonly empty: Patch |
| 29 | diff(oldValue: T, newValue: T): Patch |
| 30 | combine(first: Patch, second: Patch): Patch |
| 31 | patch(oldValue: T, patch: Patch): T |
| 32 | } |
no outgoing calls