(root: ResolvedOpenSpecRoot, options: ShowExecuteOptions)
| 65 | } |
| 66 | |
| 67 | private delegateOptions(root: ResolvedOpenSpecRoot, options: ShowExecuteOptions): ShowExecuteOptions & { rootOutput?: RootOutput } { |
| 68 | return { |
| 69 | ...options, |
| 70 | ...(options.json ? { rootOutput: toRootOutput(root) } : {}), |
| 71 | }; |
| 72 | } |
| 73 | |
| 74 | private async runInteractiveByType( |
| 75 | type: ItemType, |
no test coverage detected