You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
773 B
TypeScript
28 lines
773 B
TypeScript
3 years ago
|
import * as CallDucks from './call';
|
||
|
import * as conversationDucks from './conversations';
|
||
|
import * as defaultRoomDucks from './defaultRooms';
|
||
|
import * as DialogsDucks from './modalDialog';
|
||
|
import * as OnionDucks from './onion';
|
||
|
import * as SearchDucks from './search';
|
||
|
import * as SectionDucks from './section';
|
||
|
import * as StagedAttachmentDucks from './stagedAttachments';
|
||
|
import * as ThemeDucks from './theme';
|
||
|
import * as TimerOptionsDucks from './timerOptions';
|
||
|
import * as UserDucks from './user';
|
||
|
import * as UserConfigDucks from './userConfig';
|
||
|
|
||
|
export {
|
||
|
CallDucks,
|
||
|
DialogsDucks,
|
||
|
OnionDucks,
|
||
|
SearchDucks,
|
||
|
SectionDucks,
|
||
|
StagedAttachmentDucks,
|
||
|
ThemeDucks,
|
||
|
TimerOptionsDucks,
|
||
|
UserConfigDucks,
|
||
|
UserDucks,
|
||
|
conversationDucks,
|
||
|
defaultRoomDucks,
|
||
|
};
|