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

EMPTY_OBSERVER

The observer used as a stub for subscriptions where the user did not pass any arguments to subscribe. Comes with the default error handling behavior.

const EMPTY_OBSERVER: Readonly<Observer<any>> & {
closed: true;
}
;