能否根据 PropTypes 推断 TypeScript 中的类型?
P粉715304239
2023-08-14 17:59:21
<p>我知道如何在这种情况下推断类型:</p>
<pre class="brush:php;toolbar:false;">import PropTypes from 'prop-types';
const props = {
id: PropTypes.number,
};
type Props = PropTypes.InferProps<typeof props>;
const x: Props = {};
x.id; // number | null | undefined</pre>
<p>然而,在我的情况下,我有:</p>
<pre class="brush:php;toolbar:false;">const propsShape = PropTypes.shape({
id: PropTypes.number,
// 更多包括嵌套的 PropTypes.shape 调用的属性
});</pre>
<p>如果我尝试:</p>
<pre class="brush:php;toolbar:false;">type PropsFromShape = PropTypes.InferProps<typeof propsShape>;
const y: PropsFromShape = {};
const z = y.id;</pre>
<p>它无法编译:</p>
<pre class="brush:php;toolbar:false;">Type '{}' is not assignable to type 'PropsFromShape'.
Property 'isRequired' is missing in type '{}' but required in type 'InferPropsInner<Pick<Requireable<InferProps<{ id: Requireable<number>; }>>, "isRequired">>'.
Property 'id' does not exist on type 'PropsFromShape'.</pre>
<p>我可以将 <code>shape</code> 的参数提取为一个单独的常量,并按上述方式进行操作,但是否有一种从 <code>propsShape</code> 直接推断属性类型的好方法?</p>
要获取嵌套对象的类型,您可以使用
type NestedProps = PropTypes.InferProps<typeof propsShape>['isRequired'];
或者,如果您可以将整个props定义放在一个地方:
我个人认为后者更易读。