Experience EnhancementHelp WantedSuggestion
Repository metrics
- Stars
- (48,455 stars)
- PR merge metrics
- (平均マージ 6d 17h) (30d で 9 merged PRs)
説明
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';