Metadata of an event.

interface EventMeta {
    link?: readonly K[];
    root?: K;
    time?: number;
    type: string;
}

Type Parameters

  • K = unknown

Properties

Properties

link?: readonly K[]

Dependent event links.

root?: K

Aggregate root link.

time?: number

Issue time of the event.

type: string

Event type.

Generated using TypeDoc