@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
21 lines • 551 B
TypeScript
import type { DeviceModel } from "@ledgerhq/types-devices";
export type TransportBleDevice = {
id: string;
name: string | null;
localName: string | null;
rssi: number | null;
mtu: number;
serviceUUIDs: string[] | null;
[otherOptions: string]: unknown;
};
export type BleError = Error & {
errorCode: number;
[otherOptions: string]: unknown;
};
export type ScannedDevice = {
deviceId: string;
deviceName: string;
bleRssi: number | null;
deviceModel: DeviceModel;
};
//# sourceMappingURL=types.d.ts.map