#5381·rxjs

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:

typescript
class WebSocketSubject<In, Out> extends Observable<Out> implements Observer<In> {
  // ...stuff
}