Experience EnhancementHelp WantedSuggestion
仓库指标
- Star
- (48,455 star)
- PR 合并指标
- (平均合并 6天 17小时) (30 天内合并 9 个 PR)
描述
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';