UNPKG

@datalayer/core

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