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

SafeSubscriber

class SafeSubscriber<T> extends Subscriber<T> {
constructor(
observerOrNext?: Partial<Observer<T>> | ((value: T) => void) | null,
error?: ((e?: any) => void) | null,
complete?: (() => void) | null,
);
}

§Type Parameters

§Extends

§
Subscriber<T>
[src]

§Constructors

§
new SafeSubscriber(observerOrNext?: Partial<Observer<T>> | ((value: T) => void) | null, error?: ((e?: any) => void) | null, complete?: (() => void) | null)
[src]