8 lines
387 B
TypeScript
8 lines
387 B
TypeScript
import { ChatAggregate } from '../../../Domain/Chat/ChatAggregate';
|
|
import { ShortChatDto, DetailChatDto } from '../ChatDto';
|
|
export declare class ChatMapper {
|
|
static toShortDto(chat: ChatAggregate): ShortChatDto;
|
|
static toDetailDto(chat: ChatAggregate): DetailChatDto;
|
|
static toShortDtoList(chats: ChatAggregate[]): ShortChatDto[];
|
|
}
|
|
//# sourceMappingURL=ChatMapper.d.ts.map
|