UNPKG

react-native-lightspeedsdk

Version:
20 lines (14 loc) 334 B
/** * Represents an immutable user profile */ import type {DeviceServiceType} from './enums'; class DeviceService { name: DeviceServiceNames; state: number; constructor(name: DeviceServiceType, state: number) { this.name = name; this.state = state; Object.freeze(this); } } module.exports = DeviceService;