/** * @public */ export interface DTOMapper { fromArgs?: (...args: any[]) => TEntity; fromDTO: (dto: TDTO) => TEntity; toDTO: (entity: Partial) => TDTO; } //# sourceMappingURL=types.d.ts.map