| 1111 | } |
| 1112 | |
| 1113 | export interface CellErrorOutput { |
| 1114 | outputKind: CellOutputKind.Error; |
| 1115 | /** |
| 1116 | * Exception Name |
| 1117 | */ |
| 1118 | ename: string; |
| 1119 | /** |
| 1120 | * Exception Value |
| 1121 | */ |
| 1122 | evalue: string; |
| 1123 | /** |
| 1124 | * Exception call stack |
| 1125 | */ |
| 1126 | traceback: string[]; |
| 1127 | } |
| 1128 | |
| 1129 | export interface NotebookCellOutputMetadata { |
| 1130 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected