@laserware/stasis
    Preparing search index...

    Type Alias CaseReducers<S, AS>

    CaseReducers: {
        [T in keyof AS]: AS[T] extends Action ? CaseReducer<S, AS[T]> : void
    }

    A mapping from action types to case reducers for createReducer().

    Type Parameters

    This should not be used manually - it is only used for internal inference purposes and using it manually would lead to type erasure. It might be removed in the future.