Interface RawParseReturn

Return type interface for the parseLedgerToRaw method.

interface RawParseReturn {
    lexErrors: ILexingError[];
    parseErrors: IRecognitionException[];
    rawJournal: Raw.Journal;
}

Hierarchy (view full)

Properties

lexErrors: ILexingError[]

An array list of all encountered lexer errors

parseErrors: IRecognitionException[]

An array list of all encountered parsing errors

rawJournal: Raw.Journal

A list of !.!JournalItems constituting a parsed hledger journal, in the order that the items were encountered in the source file

Generated using TypeDoc