UNPKG

cordova-plugin-qonversion

Version:
17 lines (16 loc) 414 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ProductInAppDetails = void 0; /** * This class contains all the information about the Google in-app product details. */ class ProductInAppDetails { /** * The price of the in-app product. */ price; constructor(price) { this.price = price; } } exports.ProductInAppDetails = ProductInAppDetails;