@asteriskzuo/react-native-easemob
Version:
easemob chat sdk of react-native.
26 lines (18 loc) • 730 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ChatDeviceInfo = void 0;
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
class ChatDeviceInfo {
constructor(params) {
_defineProperty(this, "resource", void 0);
_defineProperty(this, "deviceUUID", void 0);
_defineProperty(this, "deviceName", void 0);
this.resource = params.resource;
this.deviceName = params.deviceName;
this.deviceUUID = params.deviceUUID;
}
}
exports.ChatDeviceInfo = ChatDeviceInfo;
//# sourceMappingURL=ChatDeviceInfo.js.map