| 7386 | * Rectangle. |
| 7387 | */ |
| 7388 | export interface Rect { |
| 7389 | /** |
| 7390 | * X coordinate |
| 7391 | */ |
| 7392 | x: number; |
| 7393 | |
| 7394 | /** |
| 7395 | * Y coordinate |
| 7396 | */ |
| 7397 | y: number; |
| 7398 | |
| 7399 | /** |
| 7400 | * Rectangle width |
| 7401 | */ |
| 7402 | width: number; |
| 7403 | |
| 7404 | /** |
| 7405 | * Rectangle height |
| 7406 | */ |
| 7407 | height: number; |
| 7408 | } |
| 7409 | } |
| 7410 | |
| 7411 | /** |
no outgoing calls
no test coverage detected