@usethrottle/cart
    Preparing search index...

    Interface TaxLine

    interface TaxLine {
        amount: number;
        currency: string;
        id: string;
        jurisdictionCode: string;
        jurisdictionName: string | null;
        lineItemId: string;
        rate: number;
        taxType:
            | "service"
            | "sales"
            | "vat"
            | "gst"
            | "pst"
            | "hst"
            | "excise"
            | "other";
    }
    Index
    amount: number
    currency: string
    id: string
    jurisdictionCode: string
    jurisdictionName: string | null
    lineItemId: string
    rate: number
    taxType:
        | "service"
        | "sales"
        | "vat"
        | "gst"
        | "pst"
        | "hst"
        | "excise"
        | "other"