(
kernelConnection: KernelConnectionMetadata
)
| 327 | } |
| 328 | |
| 329 | export function isRemoteConnection( |
| 330 | kernelConnection: KernelConnectionMetadata |
| 331 | ): kernelConnection is RemoteKernelConnectionMetadata { |
| 332 | return !isLocalConnection(kernelConnection); |
| 333 | } |
| 334 | |
| 335 | export type KernelHooks = |
| 336 | | 'willRestart' |
no test coverage detected