| 14 | export type Pointers = Record<string, Record<PointerProp, Location>>; |
| 15 | |
| 16 | export interface ParseResult { |
| 17 | data: any; |
| 18 | pointers: Pointers; |
| 19 | } |
| 20 | |
| 21 | export function parse( |
| 22 | source: string, |
nothing calls this directly
no outgoing calls
no test coverage detected