( nodeId: string, source: string )
| 286 | } |
| 287 | |
| 288 | function goToNodeIdAction( |
| 289 | nodeId: string, |
| 290 | source: string |
| 291 | ): SetSelectedNodeIdAction { |
| 292 | return { |
| 293 | type: "SET_SELECTED_NODE_ID", |
| 294 | id: nodeId, |
| 295 | source, |
| 296 | }; |
| 297 | } |
| 298 | |
| 299 | function goToParentAction( |
| 300 | options?: ColumnViewAPIOptions |