import { IonicNativePlugin } from '@ionic-native/core'; /** * @name Market * @description * Opens an app's page in the market place (Google Play, App Store) * * @usage * ```typescript * import { Market } from '@ionic-native/market/ngx'; * * constructor(private market: Market) { } * * ... * * this.market.open('your.package.name'); * * ``` */ export declare class MarketOriginal extends IonicNativePlugin { /** * Opens an app in Google Play / App Store * @param appId {string} Package name * @return {Promise} */ open(appId: string): Promise; /** * Search apps by keyword * @param keyword {string} Keyword * @return {Promise} */ search(keyword: string): Promise; } export declare const Market: MarketOriginal;