( options?: ColumnViewAPIOptions )
| 297 | } |
| 298 | |
| 299 | function goToParentAction( |
| 300 | options?: ColumnViewAPIOptions |
| 301 | ): MoveSelectedNodeAction { |
| 302 | return { |
| 303 | type: "MOVE_TO_PARENT", |
| 304 | source: options?.source, |
| 305 | }; |
| 306 | } |
| 307 | |
| 308 | function goToChildrenAction(): MoveSelectedNodeAction { |
| 309 | return { |