Experience EnhancementHelp WantedSuggestion
Repository-Metriken
- Stars
- (48.455 Stars)
- PR-Merge-Metriken
- (Durchschn. Merge 6T 17h) (9 gemergte PRs in 30 T)
Beschreibung
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';