Skip to content

Commit 73f4502

Browse files
committed
chore: tsc fix
1 parent c95b22d commit 73f4502

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ble/index.android.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1418,7 +1418,7 @@ export class Bluetooth extends BluetoothCommon {
14181418
});
14191419
}
14201420
scanningReferTimer: {
1421-
timer?: number;
1421+
timer?: NodeJS.Timeout;
14221422
resolve?: Function;
14231423
};
14241424

src/ble/index.ios.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -820,7 +820,7 @@ export class Bluetooth extends BluetoothCommon {
820820
return this._isEnabled();
821821
}
822822
scanningReferTimer: {
823-
timer?: number;
823+
timer?: NodeJS.Timeout;
824824
resolve?: Function;
825825
};
826826

0 commit comments

Comments
 (0)