| 3 | |
| 4 | declare 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…