-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
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
MqttClient.reconnecting has no default value #1674
Comments
could be a type issue, PR? |
davdeo
pushed a commit
to davdeo/MQTT.js
that referenced
this issue
Aug 23, 2023
I guess the problem was that the default value was not set in the constructor. |
robertsLando
added a commit
to davdeo/MQTT.js
that referenced
this issue
Aug 29, 2023
robertsLando
added a commit
that referenced
this issue
Aug 30, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After calling
mqtt.connect(brokerUrl, options)
the returned MqttClient has no default value for reconnecting (it is undefined).Is this intentional? If yes why isn't the type something like:
reconnecting: boolean | undefined
?The text was updated successfully, but these errors were encountered: