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

ConnectConfig

An object used to configure connect operator.

interface ConnectConfig <T> {
connector: () => SubjectLike<T>;
}

§Type Parameters

§Properties

§
connector: () => SubjectLike<T>
[src]

A factory function used to create the Subject through which the source is multicast. By default, this creates a Subject.