Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Latest
interface FilePosition
import { type FilePosition } from "https://deno.land/x/postcss@8.4.16/lib/input.js";

Properties

url: string

URL for the source file.

optional
file: string

Absolute path to the source file.

line: number

Line of inclusive start position in source file.

column: number

Column of inclusive start position in source file.

optional
endLine: number

Line of exclusive end position in source file.

optional
endColumn: number

Column of exclusive end position in source file.

optional
source: string

Source code.