@usethrottle/cart
    Preparing search index...

    Interface LineItem

    interface LineItem {
        cartId: string;
        description: string | null;
        discountAmount: number;
        id: string;
        imageUrl: string | null;
        metadata: Record<string, unknown>;
        name: string;
        position: number;
        quantity: number;
        recurring: { count: number | null; interval: string } | null;
        referenceId: string | null;
        subtotal: number;
        taxAmount: number;
        total: number;
        type:
            | "product"
            | "subscription"
            | "service"
            | "ticket"
            | "donation"
            | "custom";
        unitPrice: number;
    }
    Index
    cartId: string
    description: string | null
    discountAmount: number
    id: string
    imageUrl: string | null
    metadata: Record<string, unknown>
    name: string
    position: number
    quantity: number
    recurring: { count: number | null; interval: string } | null
    referenceId: string | null
    subtotal: number
    taxAmount: number
    total: number
    type: "product" | "subscription" | "service" | "ticket" | "donation" | "custom"
    unitPrice: number