gpt4 book ai didi

javascript - Redux store 的 Flow 类型检查是如何工作的?

转载 作者:行者123 更新时间:2023-11-30 20:26:59 26 4
gpt4 key购买 nike

我见过这样的代码:

import type { Store as ReduxStore } from 'redux';

export type Store = ReduxStore<State, Action>;

我不明白什么<State, Action>是在做。是否将类型参数传递给 ReduxStore?

最佳答案

是的,它们是类型参数。

export type Store = ReduxStore<State, Action>;

这表示类型 Store是一种 ReduxStore在任何特定时刻都具有 State 类型的状态,它减少了 Action 类型的过度操作.

https://github.com/flowtype/flow-typed/blob/41297ff31698506c0b398507101615e687bc9e54/definitions/npm/redux_v3.x.x/flow_v0.55.x-/redux_v3.x.x.js#L19-L24

关于javascript - Redux store 的 Flow 类型检查是如何工作的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50790469/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com