Interface DeviceEvents

interface DeviceEvents {
    attach: Device;
    attachIds: DeviceIds;
    detach: Device;
    detachIds: DeviceIds;
    newListener: keyof DeviceEvents;
    removeListener: keyof DeviceEvents;
}

Hierarchy

Properties

attach: Device
attachIds: DeviceIds
detach: Device
detachIds: DeviceIds
newListener: keyof DeviceEvents
removeListener: keyof DeviceEvents