网络状态变化回调接口

interface JRTCNetCallback {
    onNetChanged?: (
        newNetType: JRTCNetType,
        oldNetType: JRTCNetType,
    ) => void;
}

Properties

Properties

onNetChanged?: (newNetType: JRTCNetType, oldNetType: JRTCNetType) => void

系统网络变化

Type declaration