MCPcopy
hub / github.com/postcss/postcss / FilePosition

Interface FilePosition

lib/input.d.ts:5–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3
4declare namespace Input {
5 export interface FilePosition {
6 /**
7 * Column of inclusive start position in source file.
8 */
9 column: number
10
11 /**
12 * Column of exclusive end position in source file.
13 */
14 endColumn?: number
15
16 /**
17 * Line of exclusive end position in source file.
18 */
19 endLine?: number
20
21 /**
22 * Offset of exclusive end position in source file.
23 */
24 endOffset?: number
25
26 /**
27 * Absolute path to the source file.
28 */
29 file?: string
30
31 /**
32 * Line of inclusive start position in source file.
33 */
34 line: number
35
36 /**
37 * Offset of inclusive start position in source file.
38 */
39 offset: number
40
41 /**
42 * Source code.
43 */
44 source?: string
45
46 /**
47 * URL for the source file.
48 */
49 url: string
50 }
51
52 export { Input_ as default }
53}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…