FileRange interface represents a range of positions within a file.

interface FileRange {
    end: FilePosition;
    start: FilePosition;
}

Properties

Properties

The end position of the range.

The start position of the range.

Generated using TypeDoc