@datalayer/core
Version:
[](https://datalayer.io)
17 lines (16 loc) • 415 B
TypeScript
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[];
}