I stumped on something in Typescript today.
What does the three dots mean in this type ? I can't find anything that explain this at all.
Knowing that it's the type infer returned from function combineReducers of Redux
EDIT: I edited the picture so we can see clearer.
EDIT2: I add the code here, I'm trying to do something like this
let all: { readonly [key: string]: (...args: any) => any } = {
form,
metadatas_reducer,
loader_reducer
}
const combinedReducer = combineReducers(all)
Thank you.
