scopeParentHandles<CS, CA extends ReducerAction, CE> abstract method

StoreInterface<CS, CE, CA> scopeParentHandles<CS, CA extends ReducerAction, CE>({
  1. required CS toChildState(
    1. S
    ),
  2. required A fromChildAction(
    1. CA
    ),
  3. required CE toChildEnvironment(
    1. E
    ),
})

scope a stores state concerns down to a portion of it's state

Implementation

StoreInterface<CS, CE, CA>
    scopeParentHandles<CS, CA extends ReducerAction, CE>(
        {required CS Function(S) toChildState,
        required A Function(CA) fromChildAction,
        required CE Function(E) toChildEnvironment});