| 6 | export type PointerProp = "value" | "valueEnd" | "key" | "keyEnd"; |
| 7 | |
| 8 | export interface Location { |
| 9 | line: number; |
| 10 | column: number; |
| 11 | pos: number; |
| 12 | } |
| 13 | |
| 14 | export type Pointers = Record<string, Record<PointerProp, Location>>; |
| 15 |
nothing calls this directly
no outgoing calls
no test coverage detected