Type alias EventStreamOptions

EventStreamOptions: {
    initial?: boolean;
    matchTypes?: "all" | MatchType[];
    operations?: "any" | Operation[];
    reconnects?: number;
}

Param

Indicates whether or not the initial result set should be delivered on creating the subscription.

Param

A list of match types.

Param

A list of operations.

Param

The number of reconnects.

Type declaration

  • Optional initial?: boolean
  • Optional matchTypes?: "all" | MatchType[]
  • Optional operations?: "any" | Operation[]
  • Optional reconnects?: number

Generated using TypeDoc