diff --git a/modules/store/src/index.ts b/modules/store/src/index.ts index 6db51ad83a..cc7594a325 100644 --- a/modules/store/src/index.ts +++ b/modules/store/src/index.ts @@ -35,24 +35,15 @@ export { export { State, StateObservable, reduceState } from './state'; export { INITIAL_STATE, - _REDUCER_FACTORY, REDUCER_FACTORY, - _INITIAL_REDUCERS, INITIAL_REDUCERS, STORE_FEATURES, - _INITIAL_STATE, META_REDUCERS, - _STORE_REDUCERS, - _FEATURE_REDUCERS, FEATURE_REDUCERS, - _FEATURE_REDUCERS_TOKEN, USER_PROVIDED_META_REDUCERS, } from './tokens'; export { StoreModule, StoreRootModule, StoreFeatureModule, - _initialStateFactory, - _createStoreReducers, - _createFeatureReducers, } from './store_module'; diff --git a/modules/store/src/tokens.ts b/modules/store/src/tokens.ts index 5e45f54597..64097d5ff6 100644 --- a/modules/store/src/tokens.ts +++ b/modules/store/src/tokens.ts @@ -9,7 +9,7 @@ export const REDUCER_FACTORY = new InjectionToken( '@ngrx/store Reducer Factory' ); export const _REDUCER_FACTORY = new InjectionToken( - '@ngrx/store Reducer Factory Provider' + '@ngrx/store Internal Reducer Factory Provider' ); export const INITIAL_REDUCERS = new InjectionToken( '@ngrx/store Initial Reducers'