32 lines
766 B
TypeScript
32 lines
766 B
TypeScript
|
import { TActionSelectedUsers } from '../../actions/selectedUsers';
|
||
|
import { TActionActiveUsers } from '../../actions/activeUsers';
|
||
|
// REDUCERS
|
||
|
import { IActiveUsers } from '../../reducers/activeUsers';
|
||
|
import { ISelectedUsers } from '../../reducers/selectedUsers';
|
||
|
|
||
|
export interface IApplicationState {
|
||
|
settings: any;
|
||
|
login: any;
|
||
|
meteor: any;
|
||
|
server: any;
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
export type TApplicationActions = TActionActiveUsers & TActionSelectedUsers;
|