(orientation: Orientation)
| 215 | } |
| 216 | |
| 217 | export const orthogonal = (orientation: Orientation) => |
| 218 | orientation === Orientation.HORIZONTAL |
| 219 | ? Orientation.VERTICAL |
| 220 | : Orientation.HORIZONTAL; |
| 221 | |
| 222 | export interface GridLeafNode<T extends IGridView> { |
| 223 | readonly view: T; |
no outgoing calls
searching dependent graphs…