我的TypeScript版本为2.3.2
以下代码应该有效:
import * as React from 'react';
import * as ReactDOM from 'react-dom';
interface TestProps {
children: string | JSX.Element;
}
const Foo = (props: TestProps) => <div>{props.children}</div>;
// Error on Foo
ReactDOM.render(
<Foo>
<div>Test</div>
</Foo>,
document.getElementById('content'),
);
但是我得到以下编译错误:
TestTsxChildren> tsc --version
Version 2.3.2
TestTsxChildren> tsc
main.tsx(11,5): error TS2322: Type '{}' is not assignable to type 'IntrinsicAttributes & TestProps'.
Type '{}' is not assignable to type 'TestProps'.
Property 'children' is missing in type '{}'.
我做错了什么?或者我不明白这个问题试图修复什么?
答案 0 :(得分:1)
这是因为React的定义文件未更新。
定义文件需要包含interface ElementChildrenAttribute { children: {}; }
,以便TypeScript编译器知道&#34; children&#34;的名称。属性。
更新定义文件的PR:https://github.com/DefinitelyTyped/DefinitelyTyped/pull/16327)