1 | import type { INotebookCellExecutor } from './tokens';
|
2 | /**
|
3 | * Run a single notebook cell.
|
4 | *
|
5 | * @param options Cell execution options
|
6 | * @returns Execution status
|
7 | */
|
8 | export declare function runCell({ cell, notebook, notebookConfig, onCellExecuted, onCellExecutionScheduled, sessionContext, sessionDialogs, translator }: INotebookCellExecutor.IRunCellOptions): Promise<boolean>;
|