Interface JournalPosition

A position within the journal indicated by file and byte offset. Also keeps track of the line number within the journal file for better error messages.

interface JournalPosition {
    file: string;
    line: number;
    offset: number;
}

Properties

Properties

file: string

The filename of the journal file without directory.

line: number

Line number within the journal file.

offset: number

Byte offset in the journal file.