beancount
    Preparing search index...

    Interface GenericParseResult

    The basic result structure from generic parsing of a Beancount entry. Contains the entry type, header line content, and any properties like comments.

    interface GenericParseResult {
        fake?: false;
        header: string;
        props: { comment?: string };
        type: BeancountEntryType;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    fake?: false
    header: string

    The main header content from the first line of the entry

    props: { comment?: string }

    Properties extracted from the entry

    Type Declaration

    • Optionalcomment?: string

      Optional comment text following a semicolon

    The type of Beancount entry (e.g., 'open', 'close', 'balance')