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

ErrorNotification

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

interface ErrorNotification {
error: any;
kind: "E";
}

§Properties

§
error: any
[src]
§
kind: "E"
[src]

The kind of notification. Always "E"