2022-02-09 19:47:59 +00:00
|
|
|
import rocketchat from '../lib/rocketchat';
|
2022-02-07 18:54:19 +00:00
|
|
|
|
2022-03-14 14:56:49 +00:00
|
|
|
export type TRocketChat = typeof rocketchat;
|
2022-02-09 19:47:59 +00:00
|
|
|
|
|
|
|
export interface IRocketChat extends TRocketChat {
|
2022-03-08 18:54:26 +00:00
|
|
|
closeListener: any;
|
|
|
|
usersListener: any;
|
|
|
|
notifyAllListener: any;
|
|
|
|
rolesListener: any;
|
|
|
|
notifyLoggedListener: any;
|
|
|
|
activeUsers: any;
|
|
|
|
_setUserTimer: any;
|
|
|
|
connectedListener: any;
|
|
|
|
connectingListener: any;
|
|
|
|
connectTimeout: any;
|
2022-02-09 19:47:59 +00:00
|
|
|
sdk: any;
|
2022-02-14 16:20:29 +00:00
|
|
|
activeUsersSubTimeout: any;
|
2022-02-09 20:37:08 +00:00
|
|
|
roomsSub: any;
|
2022-02-07 18:54:19 +00:00
|
|
|
}
|