mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-12 09:52:52 +08:00
fix(in-app-purchase-2): fix ready method signature (#2043)
This commit is contained in:
parent
e6d4b41e7e
commit
a0183811f6
@ -46,7 +46,7 @@ import { Injectable } from '@angular/core';
|
|||||||
* alert('Store Error ' + JSON.stringify(err));
|
* alert('Store Error ' + JSON.stringify(err));
|
||||||
* });
|
* });
|
||||||
*
|
*
|
||||||
* this.store.ready().then((status) => {
|
* this.store.ready(() => {
|
||||||
* console.log(JSON.stringify(this.store.get(productId)));
|
* console.log(JSON.stringify(this.store.get(productId)));
|
||||||
* console.log('Store is Ready: ' + JSON.stringify(status));
|
* console.log('Store is Ready: ' + JSON.stringify(status));
|
||||||
* console.log('Products: ' + JSON.stringify(this.store.products));
|
* console.log('Products: ' + JSON.stringify(this.store.products));
|
||||||
@ -416,12 +416,8 @@ export class InAppPurchase2 extends IonicNativePlugin {
|
|||||||
@Cordova({ sync: true })
|
@Cordova({ sync: true })
|
||||||
order(product: string | IAPProduct, additionalData?: any): { then: Function; error: Function; } { return; }
|
order(product: string | IAPProduct, additionalData?: any): { then: Function; error: Function; } { return; }
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @return {Promise<any>} returns a promise that resolves when the store is ready
|
|
||||||
*/
|
|
||||||
@Cordova()
|
@Cordova()
|
||||||
ready(): Promise<void> { return; }
|
ready(callback: Function): void { return; }
|
||||||
|
|
||||||
@Cordova({ sync: true })
|
@Cordova({ sync: true })
|
||||||
refresh(): void {}
|
refresh(): void {}
|
||||||
|
Loading…
Reference in New Issue
Block a user