UNPKG

react-native-agora-chat

Version:
23 lines (20 loc) 471 B
/** * The device information class, which contains the information of logged-in devices. */ export class ChatDeviceInfo { /** * The information of logged-in devices. */ /** * The UUID of the device. */ /** * The device type, such as "Pixel 6 Pro". */ constructor(params) { this.resource = params.resource; this.deviceName = params.deviceName; this.deviceUUID = params.deviceUUID; } } //# sourceMappingURL=ChatDeviceInfo.js.map