From 6db2f2d324e5f43316108bb20c0cb2960702dd3d Mon Sep 17 00:00:00 2001 From: Tim Brust Date: Tue, 29 Jan 2019 22:54:54 +0100 Subject: [PATCH] fix(typescript): remove unused replace parameter (#410) This closes #295 --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index b2dd0dad4..fa9e52919 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -17,7 +17,7 @@ interface Window { * 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. */ - open(url: string, target?: string, options?: string, replace?: boolean): InAppBrowser; + open(url: string, target?: string, options?: string): InAppBrowser; } /**