export default interface DomainEvent<T> {
readonly type: string;
readonly createdAt: Date;
readonly payload: T;
}