(
kernelConnection: KernelConnectionMetadata
)
| 319 | | Readonly<import('./deepnote/types').DeepnoteKernelConnectionMetadata>; |
| 320 | |
| 321 | export function isLocalConnection( |
| 322 | kernelConnection: KernelConnectionMetadata |
| 323 | ): kernelConnection is LocalKernelConnectionMetadata { |
| 324 | return ( |
| 325 | kernelConnection.kind === 'startUsingLocalKernelSpec' || kernelConnection.kind === 'startUsingPythonInterpreter' |
| 326 | ); |
| 327 | } |
| 328 | |
| 329 | export function isRemoteConnection( |
| 330 | kernelConnection: KernelConnectionMetadata |
no outgoing calls