Record representing the item change information.
interface KeyValueChangeRecord<K, V> { readonly key: K; readonly currentValue: V | null; readonly previousValue: V | null;}