(root: Root)
| 89 | * Original callback wiring: onComplete={done}, onCancel={() => done(null)}, source="cliArg". |
| 90 | */ |
| 91 | export async function launchTeleportResumeWrapper(root: Root): Promise<TeleportRemoteResponse | null> { |
| 92 | const { |
| 93 | TeleportResumeWrapper |
| 94 | } = await import('./components/TeleportResumeWrapper.js'); |
| 95 | return showSetupDialog<TeleportRemoteResponse | null>(root, done => <TeleportResumeWrapper onComplete={done} onCancel={() => done(null)} source="cliArg" />); |
| 96 | } |
| 97 | |
| 98 | /** |
| 99 | * Site ~4597: TeleportRepoMismatchDialog (pick a local checkout of the target repo). |
no test coverage detected