Execution options for console cell executor.

interface IRunCellOptions {
    cell: CodeCell;
    onCellExecuted: ((args) => void);
    sessionContext: ISessionContext;
}

Properties

cell: CodeCell

Cell to execute

onCellExecuted: ((args) => void)

A callback to notify a cell completed execution.

Type declaration

    • (args): void
    • Parameters

      • args: {
            cell: CodeCell;
            error?: null | Error;
            executionDate: Date;
            success: boolean;
        }

      Returns void

sessionContext: ISessionContext

Document session context