A range of text.

interface ModerationTextRange {
    end: number;
    start: number;
}

Properties

Properties

end: number

The end index of the range. The end index is exclusive meaning that the character at this index will not be included in the range.

start: number

The start index of the range.