File size: 88 Bytes
d9494a5
 
 
1
2
3
4
export type ObjectRecordDiff<T> = {
  [K in keyof T]: { before: T[K]; after: T[K] };
};