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';