Experience EnhancementHelp WantedSuggestion
Métriques du dépôt
- Stars
- (48 455 stars)
- Métriques de merge PR
- (Merge moyen 6j 17h) (9 PRs mergées en 30 j)
Description
Suggestion
"currently @property is only parsed as a child of @typedef. It would be more consistent to parse it at the top-level too"
💻 Use Cases
/**
* Controls the alignment of text when printed.
*
* @property left - Left-aligns the text.
* @property right - Right-aligns the text.
* @property center - Centers the text horizontally.
*/
type TextAlignment = 'left' | 'right' | 'center';