Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GroupedObservable

An observable of values that is the emitted by the result of a groupBy operator, contains a key property for the grouping.

interface GroupedObservable <K, T> extends Observable<T> {
readonly key: K;
}

§Type Parameters

§Extends

§Properties

§
readonly key: K
[src]

The key value for the grouped notifications.