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

NextNotification

A notification representing a "next" from an observable. Can be used with dematerialize.

interface NextNotification <T> {
kind: "N";
value: T;
}

§Type Parameters

§Properties

§
kind: "N"
[src]

The kind of notification. Always "N"

§
value: T
[src]

The value of the notification.