Theia API Documentation v1.65.0
    Preparing search index...

    The summary of a notebook cell execution.

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

    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