beancount
    Preparing search index...

    Interface GenericParseResultWithDate

    Generic parse result for entries that include a date field. Extends the base result with date and metadata properties.

    interface GenericParseResultWithDate {
        fake?: false;
        header: string;
        props: { comment?: string } & { date: string; metadata?: Metadata };
        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 } & { date: string; metadata?: Metadata }

    Extended properties including date and optional metadata

    Type Declaration

    • Optionalcomment?: string

      Optional comment text following a semicolon

    • date: string

      The date string in YYYY-MM-DD format

    • Optionalmetadata?: Metadata

      Optional metadata key-value pairs

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