对于elementType属性,我应该在JSDoc中使用什么类型?
elementType
// A React element type (ie. MyComponent). optionalElementType: PropTypes.elementType
/** * @param {???} [optionalElementType] - Description */
mzsu5hc01#
我最终使用了react的ElementType:
ElementType
/** * @param {import("react").ElementType} [optionalElementType] - Description */
1条答案
按热度按时间mzsu5hc01#
我最终使用了react的
ElementType
: