我需要声明这两个语句:
declare module "react" {
interface Attributes {
sx?: ThemeUIStyleObject;
}
}
和
declare module "react" {
interface Attributes {
sx?: SxStyleProp;
}
}
因为如果没有,主题-ui 错误会出现在 sx 道具中。
我试过这个:
declare module "react" {
interface Attributes {
sx?: ThemeUIStyleObject | SxStyleProp;
}
}
但只适用于第一个对象(ThemeUIStyleObject)