WebSocketSubject may have different input and output types.
Author: benleshCreated Apr 6, 2020Updated Jul 25, 2026
Labelsbughelp wanted
Just what the title says... The AnonymousSubject (aka "frankensubject") probably also needs some typings love.
Basically, a nicer interface would be:
class WebSocketSubject<In, Out> extends Observable<Out> implements Observer<In> {
// ...stuff
}Source: ReactiveX/rxjs