Skip to main content
Module

x/bundler/deps.ts>postcss.FilePosition

A Bundler with the web in mind.
Latest
interface postcss.FilePosition
Re-export
import { type postcss } from "https://deno.land/x/bundler@0.9.0/deps.ts";
const { FilePosition } = postcss;

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.