| 3 | const customInspect = Symbol.for('nodejs.util.inspect.custom'); |
| 4 | |
| 5 | export interface BoundingBox { |
| 6 | x: number; |
| 7 | y: number; |
| 8 | width: number; |
| 9 | height: number; |
| 10 | } |
| 11 | |
| 12 | export interface ElementInfo { |
| 13 | tag: string; |
nothing calls this directly
no outgoing calls
no test coverage detected