UNPKG

@datalayer/core

Version:

[![Datalayer](https://assets.datalayer.tech/datalayer-25.svg)](https://datalayer.io)

17 lines (16 loc) 415 B
import { type IRuntimeOptions } from '../../stateful/runtimes'; export interface RuntimeTransfer { /** * Selected Kernel. */ runtime: Partial<Omit<IRuntimeOptions, 'kernelType'> & { id: string; }> | null; /** * List of selected variables * * It may differ with the serialized variables if * some serialization failed. */ selectedVariables: string[]; }