MapInterface.ts 99 B

1234
  1. export interface MapInterface<T, U> {
  2. toDomain(persistence: U): T
  3. toProjection(domain: T): U
  4. }