beancount
    Preparing search index...

    Interface SourceLocation

    Location information for a fragment of source code

    interface SourceLocation {
        endLine: number;
        filePath?: string;
        startLine: number;
    }
    Index

    Properties

    endLine: number

    Ending line number (1-based)

    filePath?: string

    Optional file path

    startLine: number

    Starting line number (1-based)