Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
interface Protocol.CSS.SourceRange
import { type Protocol } from "https://deno.land/x/pptr@1.2.0/vendor/devtools-protocol/protocol.d.ts";
const { SourceRange } = Protocol.CSS;

Text range within a resource. All numbers are zero-based.

Properties

startLine: integer

Start line of range.

startColumn: integer

Start column of range (inclusive).

endLine: integer

End line of range

endColumn: integer

End column of range (exclusive).