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.
30 lines
847 B
TypeScript
30 lines
847 B
TypeScript
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 PrimaryColorDucks from './primaryColor';
|
|
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,
|
|
PrimaryColorDucks,
|
|
SearchDucks,
|
|
SectionDucks,
|
|
StagedAttachmentDucks,
|
|
ThemeDucks,
|
|
TimerOptionsDucks,
|
|
UserConfigDucks,
|
|
UserDucks,
|
|
conversationDucks,
|
|
defaultRoomDucks,
|
|
};
|