流中的HTML属性?

时间:2018-06-03 20:05:08

标签: javascript flowtype

Flow中的TypeScript表达式的等价物是什么?

React.HTMLAttributes<HTMLElement>

例如,我想定义一个继承div元素属性的类型。

2 个答案:

答案 0 :(得分:0)

虽然我没有在流程中面对确切的HTML元素类型声明(如果不是这样,请纠正我),有引用JSX元素的泛型类型:

import * as React from 'react'

const test: React.Element<*> = <div />

flowType of a React element. React elements are commonly created using JSX literals, which desugar to React.createElement calls理解为split()(基于文档)。

Related instantiationsSource code

答案 1 :(得分:0)

您正在寻找的是:

type Props = HTMLDivElement & { myOwnProp: string }