(rect: Rect)
| 16 | export type NormalizedPoint = Point & { readonly [normalizedPointBrand]: 'normalized-point' }; |
| 17 | |
| 18 | export function normalizedRect(rect: Rect): NormalizedRect { |
| 19 | return rect as NormalizedRect; |
| 20 | } |
| 21 | |
| 22 | export function unionRects(rects: Rect[]): Rect { |
| 23 | let minX = Number.POSITIVE_INFINITY; |
no outgoing calls
no test coverage detected