Interface NotebookCellExecutionSummary

The summary of a notebook cell execution.

interface NotebookCellExecutionSummary {
    executionOrder?: number;
    success?: boolean;
    timing?: {
        endTime: number;
        startTime: number;
    };
}

Properties

executionOrder?: number

The order in which the execution happened.

success?: boolean

If the execution finished successfully.

timing?: {
    endTime: number;
    startTime: number;
}

The times at which execution started and ended, as unix timestamps

Type declaration

  • Readonly endTime: number
  • Readonly startTime: number