Interface EventStoreQuery<K, V, QueryExt>

Query APIs for an event store.

interface EventStoreQuery {
    entries(options?): SyncOrAsyncGenerator<[K, V], K[]>;
    keys(options?): SyncOrAsyncGenerator<K, K[]>;
    values(options?): SyncOrAsyncGenerator<V, K[]>;
}

Type Parameters

  • K = ContentId

  • V = unknown

  • QueryExt extends object = NonNullable<unknown>

Hierarchy

Methods

Generated using TypeDoc