You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/@awesome-cordova-plugins/plugins/in-app-browser/index.ts
+2-14Lines changed: 2 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -125,7 +125,8 @@ export type InAppBrowserEventType =
125
125
|'exit'
126
126
|'beforeload'
127
127
|'message'
128
-
|'customscheme';
128
+
|'customscheme'
129
+
|string
129
130
130
131
exportinterfaceInAppBrowserEventextendsEvent{
131
132
/** the event name */
@@ -245,19 +246,6 @@ export class InAppBrowserObject {
245
246
});
246
247
}
247
248
248
-
/**
249
-
* A method that allows you to listen to events happening in the browser.
250
-
*
251
-
* @param event {string} Name of the event
252
-
* @returns {Observable<InAppBrowserEvent>} Returns back an observable that will listen to the event on subscribe, and will stop listening to the event on unsubscribe.
0 commit comments