* Bounding box with position and size using CSS coordinate naming (top, left)
| 128 | * Bounding box with position and size using CSS coordinate naming (top, left) |
| 129 | */ |
| 130 | interface CssBoundingBox { |
| 131 | top: number; |
| 132 | left: number; |
| 133 | width: number; |
| 134 | height: number; |
| 135 | } |
nothing calls this directly
no outgoing calls
no test coverage detected