一个babel插件,用于从Flow类型声明中生成React PropTypes定义。
例子
使用此输入:
var React = require ( 'react' ) ;
export type Qux = { baz : 'literal' } ;
import type SomeExternalType from './types' ;
type FooProps = {
an_optional_string ?: string ,
a_number : number ,
a_boolean : boolean ,
a_generic_object : Object ,
array_of_strings : Array ,
instance_of_Bar : Bar ,
anything : any ,
mixed : mixe
1