UNPKG

@mbc-cqrs-serverless/core

Version:
9 lines (8 loc) 182 B
/** * Base interface for domain events. * All events should implement this interface. */ export interface IEvent { /** Source identifier of the event */ source: string; }