Type alias PersistedEvent

PersistedEvent: Omit<ToPersistEvent, "timestamp" | "id"> & {
    id: EventId;
    timestamp: Date;
}

This is the structure of an event returned by the getEventsByQuery and getEventById function

Generated using TypeDoc