Stream output from a code cell.

interface IStream {
    name: StreamType;
    output_type: "stream";
    text: MultilineString;
    [key: string]: undefined | PartialJSONValue;
}

Hierarchy (View Summary)

Indexable

Properties

Properties

The name of the stream.

output_type: "stream"

Type of cell output.

The stream's text output.