UNPKG

@adapty/capacitor

Version:
43 lines (42 loc) 1.43 kB
export declare const VendorStore: Readonly<{ AppStore: "app_store"; PlayStore: "play_store"; Adapty: "adapty"; }>; export type VendorStore = (typeof VendorStore)[keyof typeof VendorStore]; export declare const OfferType: Readonly<{ FreeTrial: "free_trial"; PayAsYouGo: "pay_as_you_go"; PayUpFront: "pay_up_front"; }>; export type OfferType = (typeof OfferType)[keyof typeof OfferType]; export declare const CancellationReason: Readonly<{ VolountarilyCancelled: "voluntarily_cancelled"; BillingError: "billing_error"; Refund: "refund"; PriceIncrease: "price_increase"; ProductWasNotAvailable: "product_was_not_available"; Unknown: "unknown"; }>; export type CancellationReason = (typeof CancellationReason)[keyof typeof CancellationReason]; export declare const Gender: Readonly<{ Female: "f"; Male: "m"; Other: "o"; }>; export type Gender = (typeof Gender)[keyof typeof Gender]; export declare const AppTrackingTransparencyStatus: Readonly<{ NotDetermined: 0; Restricted: 1; Denied: 2; Authorized: 3; Unknown: 4; }>; export type AppTrackingTransparencyStatus = (typeof AppTrackingTransparencyStatus)[keyof typeof AppTrackingTransparencyStatus]; export declare const ProductPeriod: Readonly<{ Day: "day"; Week: "week"; Month: "month"; Year: "year"; }>; export type ProductPeriod = (typeof ProductPeriod)[keyof typeof ProductPeriod];