Type alias DEVICE_TYPE

DEVICE_TYPE: {
    name: string;
    id: string;
    localName: string;
    isConnectable: boolean;
    _haveDeviceFail: boolean;
    connect: (() => Promise<DEVICE_TYPE>);
    discoverAllServicesAndCharacteristics: (() => Promise<DEVICE_TYPE>);
}

Type declaration