| 8 | */ |
| 9 | |
| 10 | export interface Rect { |
| 11 | bottom: number; |
| 12 | height: number; |
| 13 | left: number; |
| 14 | right: number; |
| 15 | top: number; |
| 16 | width: number; |
| 17 | } |
| 18 | |
| 19 | // Get the window object for the document that a node belongs to, |
| 20 | // or return null if it cannot be found (node not attached to DOM, |
nothing calls this directly
no outgoing calls
no test coverage detected