@suluk/billing - v0.2.0
    Preparing search index...

    Interface SubPlan

    A subscription plan as the app prices it — generic shape; the app derives priceCents/credits from its COGS model.

    interface SubPlan {
        id: string;
        name: string;
        credits: number;
        priceCents: number;
        label: string;
    }
    Index

    Properties

    id: string
    name: string
    credits: number
    priceCents: number
    label: string