| 1 | import type { ArrayNode, ObjectNode, SyntaxError } from './types'; |
| 2 | |
| 3 | interface StackFrame { |
| 4 | indent: number; |
| 5 | node: ObjectNode | ArrayNode; |
| 6 | parent?: ObjectNode | ArrayNode | null; |
| 7 | key?: string | null; |
| 8 | } |
| 9 | |
| 10 | interface ParseResult { |
| 11 | ast: ObjectNode; |
nothing calls this directly
no outgoing calls
no test coverage detected