import { IRoomInfo } from '../contract'; export declare class RoomInfo { readonly clientIds: string[]; readonly id: string; ext: { /** 对外信息 */ info: {}; /** 服务端数据 */ data: {}; /** 创建时间 */ gmtCreated: number; }; constructor(info: IRoomInfo, clientIds?: string[]); }