2020-03-27 17:39:01 +09:00
|
|
|
/*
|
|
|
|
* Public API Surface of store-organization
|
|
|
|
*/
|
|
|
|
|
|
|
|
import * as CommonActions from './lib/store/common/actions';
|
2020-03-30 17:56:15 +09:00
|
|
|
import * as CompanyActions from './lib/store/company/actions';
|
2020-03-27 17:39:01 +09:00
|
|
|
import * as DepartmentActions from './lib/store/department/actions';
|
|
|
|
|
|
|
|
export * from './lib/config/module-config';
|
|
|
|
|
2020-03-30 17:56:15 +09:00
|
|
|
export { CommonActions, CompanyActions, DepartmentActions };
|
2020-03-27 17:39:01 +09:00
|
|
|
|
|
|
|
export * from './lib/store/state';
|
|
|
|
|
|
|
|
export * from './lib/organization-store.module';
|