ant-plus-next / PairedDevice
PairedDevice:
object
Represents a device that is paired with the system. This type is used to define the properties of a paired device, including its unique identifier, type, and pairing status.
id:
number
paired:
boolean
type:
number
// Example of a paired device object
const device = {
id: 1,
type: 101,
paired: true
};
console.log(device.id); // Output: 1
console.log(device.type); // Output: 101
console.log(device.paired); // Output: true