(commands: readonly unknown[])
| 373 | } |
| 374 | |
| 375 | function getOutlets(commands: readonly unknown[]): {[k: string]: readonly unknown[] | string} { |
| 376 | if (isCommandWithOutlets(commands[0])) { |
| 377 | return commands[0].outlets; |
| 378 | } |
| 379 | |
| 380 | return {[PRIMARY_OUTLET]: commands}; |
| 381 | } |
| 382 | |
| 383 | function updateSegmentGroup( |
| 384 | segmentGroup: UrlSegmentGroup | undefined, |
no test coverage detected
searching dependent graphs…