This class contains all the offerings configured in RevenueCat dashboard. For more info see https://docs.revenuecat.com/docs/entitlements

interface Offerings {
    all: {
        [offeringId: string]: Offering;
    };
    current: null | Offering;
}

Properties

Properties

all: {
    [offeringId: string]: Offering;
}

Dictionary of all Offering objects keyed by their identifier.

Type declaration

current: null | Offering

Current offering configured in the RevenueCat dashboard.