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 380a7f7 commit 4435155Copy full SHA for 4435155
src/@ionic-native/plugins/branch-io/index.ts
@@ -1,5 +1,6 @@
1
import { Injectable } from '@angular/core';
2
import { Cordova, IonicNativePlugin, Plugin } from '@ionic-native/core';
3
+import { Observable } from 'rxjs';
4
5
export interface BranchIoPromise {
6
$identity_id?: number;
@@ -105,6 +106,15 @@ export class BranchIo extends IonicNativePlugin {
105
106
return;
107
}
108
109
+ /**
110
+ * Initializes Branch with callback
111
+ * @return {Observable<any>}
112
+ */
113
+ @Cordova({ observable: true })
114
+ initSessionWithCallback(): Observable<BranchIoPromise> {
115
+ return;
116
+ }
117
+
118
/**
119
* Set Request Metadata
120
* @return {Promise<any>}
0 commit comments