UNPKG

@eventstore.net/event.store

Version:

A simple and fast EventStore that support multiple persistence and notification providers

14 lines (13 loc) 250 B
/** * A Stream of events */ export interface Stream { /** * The parent aggregation for this stream */ aggregation: string; /** * The stream identifier. Must be unique for each parent aggregation */ id: string; }