tirecheck-device-sdk 0.1.93 → 0.1.94
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/index.cjs +331 -321
- package/dist/index.d.cts +44 -114
- package/dist/index.d.mts +44 -114
- package/dist/index.d.ts +44 -114
- package/dist/index.mjs +331 -321
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ provide any other implementation:
|
|
|
16
16
|
// tirecheckDeviceSdk.ts
|
|
17
17
|
import { createTirecheckDeviceSdk } from 'tirecheck-device-sdk'
|
|
18
18
|
|
|
19
|
-
export default createTirecheckDeviceSdk({
|
|
19
|
+
export default createTirecheckDeviceSdk('android', {
|
|
20
20
|
// See typescript definitions for more info
|
|
21
21
|
startScanWithOptions: ...
|
|
22
22
|
connect: ...
|
|
@@ -26,7 +26,7 @@ export default createTirecheckDeviceSdk({
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
// OR, if you're using `cordova-plugin-ble-central`:
|
|
29
|
-
export default createTirecheckDeviceSdk(window.ble.withPromises)
|
|
29
|
+
export default createTirecheckDeviceSdk('android', window.ble.withPromises)
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
Example library usage:
|