Interface Amount

Type for an hledger amount including the value and commodity name.

interface Amount {
    commodity?: string;
    number: string;
    sign?: "-" | "+";
    value: string;
}

Properties

commodity?: string
number: string
sign?: "-" | "+"
value: string

Generated using TypeDoc