feat(in-app-browser): add data in Event interface (#3258)

added data in Event interface for InApp Browser. fixes #3244
This commit is contained in:
Akshay Dwivedi 2019-12-27 19:07:26 +08:00 committed by Daniel Sogl
parent 8582fac076
commit 129ba4dbe2

View File

@ -134,6 +134,8 @@ export interface InAppBrowserEvent extends Event {
code: number;
/** the error message, only in the case of loaderror. */
message: string;
/** the postMessage data, only in the case of message. */
data: any;
}
/**