We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RxJS version: 6.0.0-beta.1
Code to reproduce: rxjs ^5
import { WebSocketSubject, WebSocketSubjectConfig } from "rxjs/observable/dom/WebSocketSubject"; const subject:WebSocketSubject<T> = new WebSocketSubject<T>(...);
rxjs ^6
import { websocket, WebSocketSubject, ????????????????????? WebSocketSubjectConfig ????????????????????? } from "rxjs/websocket"; const subject:WebSocketSubject<T> = websocket<T>(...);
Expected behavior: Provide compatible code
Actual behavior: No way to get type checking without using internal types
Additional information:
The text was updated successfully, but these errors were encountered:
Temporary imported from "rxjs/internal/observable/dom/WebSocketSubject", but I want to know official way to do it.
Sorry, something went wrong.
It's apparently an oversight in our exports. Thanks.
@benlesh I am not sure that correct, but opened PR
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
RxJS version: 6.0.0-beta.1
Code to reproduce:
rxjs ^5
rxjs ^6
Expected behavior:
Provide compatible code
Actual behavior:
No way to get type checking without using internal types
Additional information:
The text was updated successfully, but these errors were encountered: