我今天在Typescript上遇到了麻烦。
此类型中的三个点是什么意思?我找不到任何可以解释这一点的东西。
知道这是从Redux函数CombineReducers返回的类型推断
编辑:我编辑了图片,以便我们可以看得更清楚。
EDIT2:我在这里添加代码,我正在尝试做这样的事情
let all: { readonly [key: string]: (...args: any) => any } = {
form,
metadatas_reducer,
loader_reducer
}
const combinedReducer = combineReducers(all)
谢谢。