在REACT with common JS中,我可以使用spread操作符提取我没有唯一声明的其余属性。
就像这样:
function FuncComponent({icon, ...restProps}) {
//...rest part of function.
<RandomComp {...restProps} />
}
如何在TypeScript中定义给定组件的接口?
interface FuncComponentProps {
icon: string;
/* What is type declaration of the rest props, if there is no
any specific props that I can define? */
{
1条答案
按热度按时间cetgtptt1#
发送你可能知道也可能不知道的 prop 可能是不好的练习。但是这里有一个接受所有休息 prop 的方法: