ChemPare Documentation - v0.0.0
    Preparing search index...

    Interface ProductItem

    Represents a specific product item with its price and options. Used for product variations.

    interface ProductItem {
        id: string;
        optionsSelections: number[];
        price: number;
        formattedPrice: string;
    }
    Index

    Properties

    id: string

    Unique identifier for the product item

    optionsSelections: number[]

    Array of selected option IDs that define this specific product variation

    price: number

    Numeric price value of the product item

    formattedPrice: string

    Human-readable formatted price string (e.g. "$19.99")