tree-sitter - v0.25.1
    Preparing search index...

    Type Alias Point

    A position in a multi-line text document, in terms of rows and columns. Both values are zero-based.

    type Point = {
        column: number;
        row: number;
    }
    Index

    Properties

    Properties

    column: number

    Zero-based column number

    row: number

    Zero-based row number