UNPKG

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