import { IEvent } from '@nestjs/cqrs'; export interface IDomainEvent extends IEvent { occurrenceDateTime: Date; getAggregateId(): string; }