15 lines
359 B
TypeScript
15 lines
359 B
TypeScript
|
/*
|
||
|
* Public API Surface of store-organization
|
||
|
*/
|
||
|
|
||
|
import * as CommonActions from './lib/store/common/actions';
|
||
|
import * as DepartmentActions from './lib/store/department/actions';
|
||
|
|
||
|
export * from './lib/config/module-config';
|
||
|
|
||
|
export { CommonActions, DepartmentActions };
|
||
|
|
||
|
export * from './lib/store/state';
|
||
|
|
||
|
export * from './lib/organization-store.module';
|