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