@datalayer/core
Version:
**Datalayer Core**
17 lines (16 loc) • 400 B
TypeScript
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[];
}