标签: reactjs flowtype
它来自react-select的官方演示代码。
export default class CreatableAdvanced extends Component<*, State> {
类型别名 State 的定义如下:
type State = { options: [{ [string]: string }], value: string | void, };
我知道这与流和泛型有关,但是我在流的文档中找不到任何类似的东西。