Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Range

import type { Range } from "https://github.mmc99.top/raw/takker99/scrapbox-userscript-std/0.14.9/mod.ts";

選択範囲を表すデータ

選択範囲がないときは、開始と終了が同じ位置になる

interface Range {
end: Position;
start: Position;
}

§Properties

§

選択範囲の終了位置

§

選択範囲の開始位置