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
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Some optional parameters to functions are not labelled as optional in the docs, inspite being documented as such. This seems to be related to the format used for optional, multi-type parameters.
E.g.:
@param {string=} xyz ... ---> Appears correctly in the docs
@param {(string|number)=} xyz ... ---> Appears correctly in the docs
@param {string|number=} xyz ... ---> Does NOT appear correctly in the docs
Some optional parameters to functions are not labelled as optional in the docs, inspite being documented as such. This seems to be related to the format used for optional, multi-type parameters.
E.g.:
(E.g.
toJson
'spretty
parameter: docs vs source)Could this be an issue with dgeni or should all
{x|y=}
occurences be replaced with{(x|y)=}
?The text was updated successfully, but these errors were encountered: