Skip to content

Commit b63d71a

Browse files
author
naman9271
committed
fixup
1 parent 9758e3b commit b63d71a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

modules/xmpp/BreakoutRooms.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)