| 30 | | RuleProps |
| 31 | |
| 32 | export interface Position { |
| 33 | /** |
| 34 | * Source line in file. In contrast to `offset` it starts from 1. |
| 35 | */ |
| 36 | column: number |
| 37 | |
| 38 | /** |
| 39 | * Source column in file. |
| 40 | */ |
| 41 | line: number |
| 42 | |
| 43 | /** |
| 44 | * Source offset in file. It starts from 0. |
| 45 | */ |
| 46 | offset: number |
| 47 | } |
| 48 | |
| 49 | export interface Range { |
| 50 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…