* Get all static items from a layout
(layout: Layout)
| 18 | * Get all static items from a layout |
| 19 | */ |
| 20 | function getStatics(layout: Layout): LayoutItem[] { |
| 21 | return layout.filter(l => l.static); |
| 22 | } |
| 23 | |
| 24 | const heightWidth: { x: "w"; y: "h" } = { x: "w", y: "h" }; |
| 25 |
no outgoing calls
no test coverage detected
searching dependent graphs…