Interface IExecuteResult

Result of executing a code cell.

interface IExecuteResult {
    data: IMimeBundle;
    execution_count: ExecutionCount;
    metadata: PartialJSONObject;
    output_type: "execute_result";
    [key: string]: undefined | PartialJSONValue;
}

Hierarchy (View Summary)

Indexable

Properties

A mime-type keyed dictionary of data.

execution_count: ExecutionCount

A result's prompt number.

metadata: PartialJSONObject

Cell output metadata.

output_type: "execute_result"

Type of cell output.