mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2026-05-02 00:07:23 +08:00
fix(smartlook): fix SmartlookResetSession.resetUser type to boolean (#3692)
This commit is contained in:
@@ -52,9 +52,9 @@ export class SmartlookSetupConfig {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export class SmartlookResetSession {
|
export class SmartlookResetSession {
|
||||||
private resetUser: string;
|
private resetUser: boolean;
|
||||||
|
|
||||||
constructor(resetUser: string) {
|
constructor(resetUser: boolean) {
|
||||||
this.resetUser = resetUser;
|
this.resetUser = resetUser;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user