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

Observer

type Observer<T> = {
next: (value: T) => void;
}
;

§Type Parameters

§Type

§
{
next: (value: T) => void;
}
[src]