8 lines
438 B
TypeScript
8 lines
438 B
TypeScript
import { ContactAggregate } from '../../../Domain/Contact/ContactAggregate';
|
|
import { ShortContactDto, DetailContactDto } from '../ContactDto';
|
|
export declare class ContactMapper {
|
|
static toShortDto(contact: ContactAggregate): ShortContactDto;
|
|
static toDetailDto(contact: ContactAggregate): DetailContactDto;
|
|
static toShortDtoList(contacts: ContactAggregate[]): ShortContactDto[];
|
|
}
|
|
//# sourceMappingURL=ContactMapper.d.ts.map
|