import { ChatArchiveAggregate } from '../Chat/ChatArchiveAggregate'; export interface IChatArchiveRepository { create(archive: Partial): Promise; findAll(): Promise; findById(id: string): Promise; findByChatId(chatId: string): Promise; findByGameId(gameId: string): Promise; delete(id: string): Promise; cleanup(olderThanDays: number): Promise; } //# sourceMappingURL=IChatArchiveRepository.d.ts.map