File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -107,9 +107,9 @@ interface InAppBrowser extends Window {
107
107
* loaderror: event fires when the InAppBrowser encounters an error when loading a URL.
108
108
* exit: event fires when the InAppBrowser window is closed.
109
109
* @param callback the function that executes when the event fires. The function is
110
- * passed an InAppBrowserEvent object as a parameter.
110
+ * passed an Event object as a parameter.
111
111
*/
112
- addEventListener ( type : string , callback : ( event : InAppBrowserEvent ) => void ) : void ;
112
+ addEventListener ( type : string , callback : ( event : Event ) => void ) : void ;
113
113
// removeEventListener overloads
114
114
/**
115
115
* Removes a listener for an event from the InAppBrowser.
@@ -163,9 +163,9 @@ interface InAppBrowser extends Window {
163
163
* loaderror: event fires when the InAppBrowser encounters an error when loading a URL.
164
164
* exit: event fires when the InAppBrowser window is closed.
165
165
* @param callback the function that executes when the event fires. The function is
166
- * passed an InAppBrowserEvent object as a parameter.
166
+ * passed an Event object as a parameter.
167
167
*/
168
- removeEventListener ( type : string , callback : ( event : InAppBrowserEvent ) => void ) : void ;
168
+ removeEventListener ( type : string , callback : ( event : Event ) => void ) : void ;
169
169
/** Closes the InAppBrowser window. */
170
170
close ( ) : void ;
171
171
/**
You can’t perform that action at this time.
0 commit comments