Interface TextSelectionRange

interface TextSelectionRange {
    direction?: "forward" | "backward" | "none";
    end: number;
    start: number;
}

Properties

Properties

direction?: "forward" | "backward" | "none"
end: number
start: number