Skip to content

Instantly share code, notes, and snippets.

@dkacper
Created August 10, 2022 09:39
Show Gist options
  • Save dkacper/f6f293752952c8ae0cf89cd9ad7a30cd to your computer and use it in GitHub Desktop.
Save dkacper/f6f293752952c8ae0cf89cd9ad7a30cd to your computer and use it in GitHub Desktop.
Abstract Mapper
export abstract class Mapper<TDomain, TDto = unknown> {
// public static map: Mapper<TDomain, TDto>; Add this property to a mapper to access methods like they were static.
public abstract toDto?: (domain: TDomain) => TDto;
public abstract toDomain?: (dto: TDto) => TDomain;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment