我看过这样的代码:
import type { Store as ReduxStore } from 'redux';
export type Store = ReduxStore<State, Action>;
我不明白<State, Action>
正在做什么。它是否将类型参数传递给ReduxStore?
答案 0 :(得分:1)
是的,它们是类型参数。
export type Store = ReduxStore<State, Action>;
这表示类型Store
是一种ReduxStore
,在任何特定时刻都具有State
类型的状态,并且会减少类型Action
的操作。