Record
terminal-output
Snapshot of a terminal's output.
record terminal-output {
output: string,
truncated: bool,
exit-status: option<terminal-exit-status>,
}Fields
| Name | Type | Description |
|---|---|---|
| output | string | Output captured so far. |
| truncated | bool | Whether the output was truncated due to byte limits. |
| exit-status | option<terminal-exit-status> | Present if the command has exited. |