Interface LotPrice

Type for an hledger lot price, either the total lot price or unit lot price.

interface LotPrice {
    amount: Amount;
    lotPriceType: "unit" | "total";
}

Properties

Properties

amount: Amount
lotPriceType: "unit" | "total"

Generated using TypeDoc