import type DomainEvent from "./DomainEvent";
export default interface DomainProjection {
handle(event: DomainEvent<any>): void;
}