We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc79a1e commit f32da73Copy full SHA for f32da73
src/@ionic-native/plugins/bluetooth-le/index.ts
@@ -40,7 +40,8 @@ export type Status =
40
| 'advertisingStarted'
41
| 'advertisingStopped'
42
| 'responded'
43
- | 'notified';
+ | 'notified'
44
+ | 'notificationSent';
45
46
/** Available connection priorities */
47
export type ConnectionPriority = 'low' | 'balanced' | 'high';
@@ -88,6 +89,8 @@ export interface NotifyParams {
88
89
characteristic: string;
90
/** Base64 encoded string, number or string */
91
value: string;
92
+ /** Android only: address of the device the notification should be sent to. */
93
+ address?: string;
94
}
95
96
export interface RespondParams {
0 commit comments