| 29 | * optionally overridden to implement custom behavior. |
| 30 | */ |
| 31 | export abstract class Layout<T extends object = Node<any>, O = any> implements LayoutDelegate { |
| 32 | /** The Virtualizer the layout is currently attached to. */ |
| 33 | virtualizer: Virtualizer<T, any> | null = null; |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected