16 lines
407 B
TypeScript
16 lines
407 B
TypeScript
/*
|
|
* Public API Surface of store-chat
|
|
*/
|
|
|
|
import * as CommonActions from './lib/store/common/actions';
|
|
import * as RoomActions from './lib/store/room/actions';
|
|
import * as ChattingActions from './lib/store/chatting/actions';
|
|
|
|
export * from './lib/config/module-config';
|
|
|
|
export { CommonActions, RoomActions, ChattingActions };
|
|
|
|
export * from './lib/store/state';
|
|
|
|
export * from './lib/chat-store.module';
|