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
Flow allows declaring object types with a type alias statement:
/** * A 2D point. */typePoint={x: number,y: number};
It would be convenient if property names and types could be inferred from this statement in the same way that they are inferred from function parameters, generating docs as if those properties had been declared with the @property tag.
The text was updated successfully, but these errors were encountered:
Given the `type` tag introduced with Flow, this can infer
a typedef statement, as well as infer its potentially
nested properties and their types.
This also includes
* Refactor of Markdown AST generation that fixes#228
* Refactor of nest.js to handle multi-level nesting
Given the `type` tag introduced with Flow, this can infer
a typedef statement, as well as infer its potentially
nested properties and their types.
This also includes
* Refactor of Markdown AST generation that fixes#228
* Refactor of nest.js to handle multi-level nesting
Flow allows declaring object types with a type alias statement:
It would be convenient if property names and types could be inferred from this statement in the same way that they are inferred from function parameters, generating docs as if those properties had been declared with the
@property
tag.The text was updated successfully, but these errors were encountered: