Interface IExecuteResult

Result of executing a code cell.

interface IExecuteResult {
    data: IMimeBundle;
    execution_count: ExecutionCount;
    metadata: PartialJSONObject;
    output_type: "execute_result";
}

Hierarchy (view full)

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.