Position of a node in a source document.

A position is a range between two points.

interface Position$1 {
    end: Point;
    start: Point;
}

Properties

Properties

end: Point

Place of the first character after the parsed source region.

start: Point

Place of the first character of the parsed source region.