fix(smartlook): fix SmartlookResetSession.resetUser type to boolean (#3692)

This commit is contained in:
Krystof Celba 2021-06-29 13:39:05 +02:00 committed by GitHub
parent f19ddc7cde
commit 5a42e8cadf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
}
}