File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -22,23 +22,23 @@ const logger = getLogger('modules/xmpp/BreakoutRooms');
2222/**
2323 * Types for breakout room participants and rooms.
2424 */
25- interface IBreakoutRoomParticipant {
25+ export interface IBreakoutRoomParticipant {
2626 [ key : string ] : unknown ;
2727 jid : string ;
2828}
2929
30- interface IBreakoutRoom {
30+ export interface IBreakoutRoom {
3131 [ key : string ] : unknown ;
3232 participants ?: { [ key : string ] : IBreakoutRoomParticipant ; } ;
3333}
3434
35- interface IBreakoutRoomsUpdatePayload {
35+ export interface IBreakoutRoomsUpdatePayload {
3636 [ key : string ] : unknown ;
3737 event : string ;
3838 rooms : { [ key : string ] : IBreakoutRoom ; } ;
3939}
4040
41- interface IBreakoutRoomsMoveToRoomPayload {
41+ export interface IBreakoutRoomsMoveToRoomPayload {
4242 [ key : string ] : unknown ;
4343 event : string ;
4444 roomJid : string ;
You can’t perform that action at this time.
0 commit comments