import { IAPProduct } from '@ionic-native/in-app-purchase-2/ngx'; import { Observable } from 'rxjs'; export interface IStore { registerProduct(id: string, type: string): Promise; order(id: string): Promise; ready(): Promise; owned(id: string): Observable; approved(id: string): Observable; verified(id: string): Observable; refresh(): any; }