You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* Object containing some stuff
* @typedef {object} Example
* @property {number} id - An ID
* @property {object} someObj - Object containing properties
* @property {number} someObj.prop1 - Property 1
* @property {number} someObj.prop2 - Property 2
*/
Expected behavior
example.someObj should show as an OBJECT containing some number properties.
Instead I get:
ie. example.someObj is shown to have type number, and its description is not the one I set for it (Object containing properties), but instead it shows the description of someObj's last property (Property 2)
Desktop (please complete the following information):
Latest version
The text was updated successfully, but these errors were encountered:
Describe the bug
Nested object schema definitions don't work.
To Reproduce
For example, I have interface:
I represent it like this:
Expected behavior
example.someObj should show as an OBJECT containing some number properties.
Instead I get:
ie. example.someObj is shown to have type number, and its description is not the one I set for it (Object containing properties), but instead it shows the description of someObj's last property (Property 2)
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: