feat(in-app-purchase-2): added manageBilling method (#3690)

This commit is contained in:
Philip Cesar Garay 2021-06-29 19:39:20 +08:00 committed by GitHub
parent 5a42e8cadf
commit 383a88463a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -903,4 +903,8 @@ export class InAppPurchase2 extends IonicNativePlugin {
/** Opens the Code Redemption Sheet on iOS. (AppStore). */
@Cordova({ sync: true })
redeem(): void {}
/** Opens the Manage Billing page (AppStore, Play, Microsoft, ...), where the user can update his/her payment methods. */
@Cordova({ sync: true })
manageBilling(): void {}
}