| 13 | const DEFAULT_RUNTIME_URL = 'https://nodebox-runtime.codesandbox.io'; |
| 14 | |
| 15 | export interface ChannelOptions { |
| 16 | iframe: HTMLIFrameElement; |
| 17 | |
| 18 | /** |
| 19 | * A custom Nodebox runtime URL |
| 20 | */ |
| 21 | runtimeUrl?: string; |
| 22 | |
| 23 | /** |
| 24 | * A custom Sandpack CDN URL. |
| 25 | */ |
| 26 | cdnUrl?: string; |
| 27 | } |
| 28 | |
| 29 | const debug = createDebug('emulator'); |
| 30 |
nothing calls this directly
no outgoing calls
no test coverage detected