我希望能够创建React组件的Props类型,以使其具有它呈现的“核心” HTML元素的所有属性,但允许我的组件覆盖其中的一些道具。在图片/代码中:
从KeyedProcessFunction
的代码完成中可以看出,它实现了Combined
属性的并集,但是我希望它仅是onChange
而不是{{1} }。
我该如何告诉TS编译器?
答案 0 :(得分:0)
import { FormEventHandler } from 'react'
type Prop = { a: number; onChange: () => number }
type Other = { b: string; onChange: FormEventHandler }
type Combined = Prop & Omit<Other, keyof Prop>
function x(c: Combined) {
return c.onChange() // => number
}