(layout: Layout)
| 62 | * @returns Array of static layout items |
| 63 | */ |
| 64 | export function getStatics(layout: Layout): LayoutItem[] { |
| 65 | return layout.filter((l): l is LayoutItem => l.static === true); |
| 66 | } |
| 67 | |
| 68 | // ============================================================================ |
| 69 | // Layout Cloning |
no outgoing calls
no test coverage detected
searching dependent graphs…