export class Config{ /** * websocks 服务地址 */ host:string="0.0.0.0"; /** * 端口 */ port:number=12580; /** * 消息等待超时时间(单位毫秒) */ timeout:number=30000; /** * 日志模式 */ mode:"debug"|"release"="release"; /** * 签名秘钥 */ secret:string=''; urlParam?:string; browserId?:string; }