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