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