2022-01-18 15:59:43 +00:00
|
|
|
// ACTIONS
|
2022-01-11 13:48:01 +00:00
|
|
|
import { TActionSelectedUsers } from '../../actions/selectedUsers';
|
|
|
|
import { TActionActiveUsers } from '../../actions/activeUsers';
|
2022-01-18 15:59:43 +00:00
|
|
|
import { TActionServer } from '../../actions/server';
|
2022-01-11 13:48:01 +00:00
|
|
|
// REDUCERS
|
|
|
|
import { IActiveUsers } from '../../reducers/activeUsers';
|
|
|
|
import { ISelectedUsers } from '../../reducers/selectedUsers';
|
2022-01-18 15:59:43 +00:00
|
|
|
import { IServer } from '../../reducers/server';
|
2022-01-11 13:48:01 +00:00
|
|
|
|
|
|
|
export interface IApplicationState {
|
|
|
|
settings: any;
|
|
|
|
login: any;
|
|
|
|
meteor: any;
|
2022-01-18 15:59:43 +00:00
|
|
|
server: IServer;
|
2022-01-11 13:48:01 +00:00
|
|
|
selectedUsers: ISelectedUsers;
|
|
|
|
createChannel: any;
|
|
|
|
app: any;
|
|
|
|
room: any;
|
|
|
|
rooms: any;
|
|
|
|
sortPreferences: any;
|
|
|
|
share: any;
|
|
|
|
customEmojis: any;
|
|
|
|
activeUsers: IActiveUsers;
|
|
|
|
usersTyping: any;
|
|
|
|
inviteLinks: any;
|
|
|
|
createDiscussion: any;
|
|
|
|
inquiry: any;
|
|
|
|
enterpriseModules: any;
|
|
|
|
encryption: any;
|
|
|
|
permissions: any;
|
|
|
|
roles: any;
|
|
|
|
}
|
|
|
|
|
2022-01-18 15:59:43 +00:00
|
|
|
export type TApplicationActions = TActionActiveUsers & TActionSelectedUsers & TActionServer;
|