如何为 Inferno.js 编写定义
import 'react';
declare module 'react' {
interface StyleHTMLAttributes<T> extends React.HTMLAttributes<T> {
jsx?: boolean;
global?: boolean;
}
}
因为
export const Footer = props =>
<footer>
<style jsx>{`{
color: green;
}`}</style>
</footer>
导致错误。
[ts] 类型“DetailedHTMLProps,HTMLStyleElement>”上不存在属性“jsx”。