mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-22 01:44:39 -05:00
19 lines
325 B
TypeScript
19 lines
325 B
TypeScript
export interface Room {
|
|
collection: 'matching_rooms';
|
|
|
|
version: number;
|
|
roomId: number;
|
|
masterKey: number[];
|
|
masterGlobal: string;
|
|
masterPrivate: string;
|
|
localKey: number[];
|
|
musicId: number;
|
|
seqId: number;
|
|
members: {
|
|
cabid: number;
|
|
addr: string;
|
|
}[];
|
|
isFull: boolean;
|
|
isMatchEnd: boolean;
|
|
}
|