我在样式化组件上有一个接口,其中包含每个属性的类型提示。如下图所示:
interface PBProps {
color: Colours;
bgColor: Colours;
/** for example: 10px or 10% */
height: string;
paddingLR: string;
fontSize: string;
width: string;
margin: string;
fontWeight: string;
}
当您将鼠标悬停在实际元素上的高度上时,想法是这样的。我有一个评论节目。
因此它在具有(JSX attribute) height: string
的同一框中显示“例如:10px或10%”
我知道您可以做到:
/**
* @param {string} height // comment
*/
但是这并不能达到我希望达到的效果。这有可能吗? 2天的搜寻量已远远不够!我的Google FU不够强大!