Module Vim.Range

type t = {
startPos : Position.t;
endPos : Position.t;
}
val create : startLine:int -> startColumn:int -> endLine:int -> endColumn:int -> unit -> t
val equals : t -> t -> bool