UNPKG

text-manipulation

Version:

A NPM library that assists in text range manipulation

12 lines (11 loc) 235 B
import { TextPosition } from './text-position'; export interface TextRange { /** * The start of the range */ readonly start: TextPosition; /** * The end of the range */ readonly end: TextPosition; }