我真的是一个初学者在 typescript 的世界,我目前正在使用的React表库,没有默认类型的文档。
因此,我想请您帮助将类型添加到IndeterminateCheckbox方法。
const IndeterminateCheckbox = React.forwardRef(
({ indeterminate, ...rest }, ref) => {
const defaultRef = React.useRef()
const resolvedRef = ref || defaultRef
React.useEffect(() => {
resolvedRef.current.indeterminate = indeterminate
}, [resolvedRef, indeterminate])
return (
<>
<input type="checkbox" ref={resolvedRef} {...rest} />
</>
)
}
)
以下是React Table文档中的沙箱链接:https://codesandbox.io/s/github/tannerlinsley/react-table/tree/master/examples/row-selection-and-pagination?from-embed=&file=/src/App.js:613-1010
我的第二个问题是:* * 我可以在哪里找到类型并自行添加?**
2条答案
按热度按时间jaql4c8m1#
1.创建@类型/React.d.ts
2.输入部分
jmo0nnb32#
我只是想把代码在这里,所以它是可见的每个人都有问题。解决方案是从线程从Megha的评论:
Link: https://github.com/TanStack/table/discussions/1989#discussioncomment-4388612