16 lines
245 B
TypeScript
16 lines
245 B
TypeScript
|
export { NgRxStoreModule } from './src/ngrx-store.module';
|
||
|
export {
|
||
|
createReducer,
|
||
|
ofAction,
|
||
|
} from './src/core';
|
||
|
export {
|
||
|
Action,
|
||
|
Effect,
|
||
|
Store,
|
||
|
Select,
|
||
|
} from './src/decorator';
|
||
|
export {
|
||
|
NgRxStoreSelect,
|
||
|
} from './src/service';
|
||
|
|