13 lines
586 B
TypeScript
13 lines
586 B
TypeScript
import { ArchiveChatCommand, RestoreChatCommand } from './ChatCommands';
|
|
import { IChatRepository } from '../../../Domain/IRepository/IChatRepository';
|
|
export declare class ArchiveChatCommandHandler {
|
|
private chatRepository;
|
|
constructor(chatRepository: IChatRepository);
|
|
execute(command: ArchiveChatCommand): Promise<boolean>;
|
|
}
|
|
export declare class RestoreChatCommandHandler {
|
|
private chatRepository;
|
|
constructor(chatRepository: IChatRepository);
|
|
execute(command: RestoreChatCommand): Promise<boolean>;
|
|
}
|
|
//# sourceMappingURL=ChatArchiveCommandHandlers.d.ts.map
|