From 5a42e8cadfc0d5269c4e06149c2d1ecf4ad721f7 Mon Sep 17 00:00:00 2001 From: Krystof Celba Date: Tue, 29 Jun 2021 13:39:05 +0200 Subject: [PATCH] fix(smartlook): fix SmartlookResetSession.resetUser type to boolean (#3692) --- src/@ionic-native/plugins/smartlook/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@ionic-native/plugins/smartlook/index.ts b/src/@ionic-native/plugins/smartlook/index.ts index d863c64d3..b88a1e509 100644 --- a/src/@ionic-native/plugins/smartlook/index.ts +++ b/src/@ionic-native/plugins/smartlook/index.ts @@ -52,9 +52,9 @@ export class SmartlookSetupConfig { } export class SmartlookResetSession { - private resetUser: string; + private resetUser: boolean; - constructor(resetUser: string) { + constructor(resetUser: boolean) { this.resetUser = resetUser; } }