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
Description
The class variable this.WritableStream is incorrectly typed in TableSaver.tsx
this.WritableStream
Steps to reproduce
TableSaver.tsx
WritableStream = window.WritableStream ?? ponyfillWritableStream;
Expected results
WritableStream should be typed as WritableStream: window.WritableStream || ponyfillWritableStream;
WritableStream: window.WritableStream || ponyfillWritableStream;
Actual results
WritableStream is typed as WritableStream = window.WritableStream ?? ponyfillWritableStream;
The text was updated successfully, but these errors were encountered:
fix: Typing for WritableStream
d4cee7a
- Import in a different file and just export it - Use implicit typing to work around the issue - Fixes deephaven#803
fix: Typing for WritableStream (#1186)
dfdf356
- Import in a different file and just export it - Use implicit typing to work around the issue - Fixes #803
Zhou-Ziheng
Successfully merging a pull request may close this issue.
Description
The class variable
this.WritableStream
is incorrectly typed in TableSaver.tsxSteps to reproduce
TableSaver.tsx
WritableStream = window.WritableStream ?? ponyfillWritableStream;
Expected results
WritableStream should be typed as
WritableStream: window.WritableStream || ponyfillWritableStream;
Actual results
WritableStream is typed as
WritableStream = window.WritableStream ?? ponyfillWritableStream;
The text was updated successfully, but these errors were encountered: