fix(typescript): remove unused replace parameter (#410)

This closes #295
This commit is contained in:
Tim Brust 2019-01-29 22:54:54 +01:00 committed by Jan Piotrowski
parent 632a395b3d
commit 6db2f2d324

2
types/index.d.ts vendored
View File

@ -17,7 +17,7 @@ interface Window {
* The options string must not contain any blank space, and each feature's * The options string must not contain any blank space, and each feature's
* name/value pairs must be separated by a comma. Feature names are case insensitive. * name/value pairs must be separated by a comma. Feature names are case insensitive.
*/ */
open(url: string, target?: string, options?: string, replace?: boolean): InAppBrowser; open(url: string, target?: string, options?: string): InAppBrowser;
} }
/** /**