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
The signature of the hot() and cold() functions changed between versions 3.0.6 and 3.1.0.
hot()
cold()
It changed from: cold(marbles: string, values?: any, error?: any): to: cold(marbles: string, values?: object, error?: object)
cold(marbles: string, values?: any, error?: any):
cold(marbles: string, values?: object, error?: object)
The any => object change can cause type errors
any
object
The text was updated successfully, but these errors were encountered:
Having this problem as well. Some of our error notifications are not objects.
Sorry, something went wrong.
No branches or pull requests
The signature of the
hot()
andcold()
functions changed between versions 3.0.6 and 3.1.0.It changed from:
cold(marbles: string, values?: any, error?: any):
to:
cold(marbles: string, values?: object, error?: object)
The
any
=>object
change can cause type errorsThe text was updated successfully, but these errors were encountered: