(box: {
x: number;
y: number;
width: number;
height: number;
})
| 26 | } |
| 27 | |
| 28 | export function viewBoxToString(box: { |
| 29 | x: number; |
| 30 | y: number; |
| 31 | width: number; |
| 32 | height: number; |
| 33 | }): string { |
| 34 | return `${box.x} ${box.y} ${box.width} ${box.height}`; |
| 35 | } |
no outgoing calls
no test coverage detected