@jupyterlab/notebook
Version:
JupyterLab - Notebook
9 lines (8 loc) • 379 B
TypeScript
import type { INotebookCellExecutor } from './tokens';
/**
* Run a single notebook cell.
*
* @param options Cell execution options
* @returns Execution status
*/
export declare function runCell({ cell, notebook, notebookConfig, onCellExecuted, onCellExecutionScheduled, sessionContext, sessionDialogs, translator }: INotebookCellExecutor.IRunCellOptions): Promise<boolean>;