ts-graphviz
    Preparing search index...

    Interface FilePositionBeta

    The FilePosition interface represents the position of a file in terms of its offset, line number, and column number.

    interface FilePosition {
        column: number;
        line: number;
        offset: number;
    }
    Index

    Properties

    Properties

    column: number

    The column number of the file.

    line: number

    The line number of the file.

    offset: number

    The offset of the file.