Interface Account

Type for an hledger account, including whether the account is being referred to as a real, virtual, or virtual balanced posting

interface Account {
    name: string[];
    type: "real" | "virtual" | "virtualBalanced";
}

Properties

Properties

name: string[]
type: "real" | "virtual" | "virtualBalanced"

Generated using TypeDoc