Flow中的TypeScript表达式的等价物是什么?
React.HTMLAttributes<HTMLElement>
例如,我想定义一个继承div
元素属性的类型。
答案 0 :(得分:0)
虽然我没有在流程中面对确切的HTML元素类型声明(如果不是这样,请纠正我),有引用JSX元素的泛型类型:
import * as React from 'react'
const test: React.Element<*> = <div />
flow
将Type of a React element. React elements are commonly created using JSX literals, which desugar to React.createElement calls
理解为split()
(基于文档)。
答案 1 :(得分:0)
您正在寻找的是:
type Props = HTMLDivElement & { myOwnProp: string }