Fix incorrect TypeScript typings (#515)

* fix #514

* Update based on conversation in #514

* Fixed whitespace
This commit is contained in:
Kamil Burek 2020-04-03 13:08:32 +01:00 committed by GitHub
parent 11ba4c4e7e
commit c01f037c8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

9
types/index.d.ts vendored
View File

@ -6,7 +6,7 @@
// Copyright (c) Microsoft Open Technologies Inc
// Licensed under the MIT license.
// TypeScript Version: 2.3
type channel = "loadstart" | "loadstop" | "loaderror" | "exit" | "message";
type channel = "loadstart" | "loadstop" | "loaderror" | "exit" | "message" | "customscheme";
interface Window {
/**
@ -40,6 +40,13 @@ interface InAppBrowser extends Window {
* passed an InAppBrowserEvent object as a parameter.
*/
addEventListener(type: channel, callback: InAppBrowserEventListenerOrEventListenerObject): void;
/**
* Adds a listener for an event from the InAppBrowser.
* @param type any custom event that might occur.
* @param callback the function that executes when the event fires. The function is
* passed an InAppBrowserEvent object as a parameter.
*/
addEventListener(type: string, callback: InAppBrowserEventListenerOrEventListenerObject): void;
// removeEventListener overloads
/**
* Removes a listener for an event from the InAppBrowser.