| 193 | } |
| 194 | |
| 195 | export interface LocationI { |
| 196 | start: { |
| 197 | line: number, |
| 198 | column: number |
| 199 | }; |
| 200 | end: { |
| 201 | line: number, |
| 202 | column: number |
| 203 | }; |
| 204 | } |
| 205 | |
| 206 | export type SingleLocationData = { |
| 207 | location: LocationI; |
nothing calls this directly
no outgoing calls
no test coverage detected