type CombineShape<T>
Type defining the allowed shape of reducer combinations.
Definition
type CombineShape<T> = Reducer<T, any> | Reducer.CombineShape<T>[] | {
[key: string]: Reducer.CombineShape<T>;
};
type CombineShape<T>Type defining the allowed shape of reducer combinations.
type CombineShape<T> = Reducer<T, any> | Reducer.CombineShape<T>[] | {
[key: string]: Reducer.CombineShape<T>;
};