mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2026-05-02 00:07:23 +08:00
🧈
This commit is contained in:
Vendored
+7
-4
@@ -1,7 +1,10 @@
|
||||
export declare class BLE {
|
||||
static scan(services: any[], seconds: number): void;
|
||||
static startScan: any;
|
||||
static stopScan: any;
|
||||
static connect: any;
|
||||
static disconnect: any;
|
||||
static startScan(services: any[]): void;
|
||||
static stopScan(): void;
|
||||
static connect(deviceId: string): void;
|
||||
static disconnect(deviceId: string): void;
|
||||
static read(deviceId: string, serviceUUID: string, characteristicUUID: string): void;
|
||||
static write(deviceId: string, serviceUUID: string, characteristicUUID: string, value: ArrayBuffer): void;
|
||||
static writeWithoutResponse(deviceId: string, serviceUUID: string, characteristicUUID: string, value: ArrayBuffer): void;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user