fix(purchases): remove static for logIn, logOut methods (#3709)

This commit is contained in:
Evan Harvey 2021-08-21 03:57:03 +09:00 committed by GitHub
parent 39ad4d13aa
commit c6b65e9715
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -430,7 +430,7 @@ export class Purchases extends IonicNativePlugin {
* whether the user has just been created for the first time in the RevenueCat backend. * whether the user has just been created for the first time in the RevenueCat backend.
*/ */
@Cordova() @Cordova()
static logIn(appUserID: string): Promise<LogInResult> { logIn(appUserID: string): Promise<LogInResult> {
return; return;
} }
@ -440,7 +440,7 @@ export class Purchases extends IonicNativePlugin {
* @return {Promise<PurchaserInfo>} new purchaser info after resetting. * @return {Promise<PurchaserInfo>} new purchaser info after resetting.
*/ */
@Cordova() @Cordova()
static logOut(): Promise<PurchaserInfo> { logOut(): Promise<PurchaserInfo> {
return; return;
} }