| 1134 | } |
| 1135 | |
| 1136 | export interface CellDisplayOutput { |
| 1137 | outputKind: CellOutputKind.Rich; |
| 1138 | /** |
| 1139 | * { mime_type: value } |
| 1140 | * |
| 1141 | * Example: |
| 1142 | * ```json |
| 1143 | * { |
| 1144 | * "outputKind": vscode.CellOutputKind.Rich, |
| 1145 | * "data": { |
| 1146 | * "text/html": [ |
| 1147 | * "<h1>Hello</h1>" |
| 1148 | * ], |
| 1149 | * "text/plain": [ |
| 1150 | * "<IPython.lib.display.IFrame at 0x11dee3e80>" |
| 1151 | * ] |
| 1152 | * } |
| 1153 | * } |
| 1154 | */ |
| 1155 | data: { [key: string]: any }; |
| 1156 | |
| 1157 | readonly metadata?: NotebookCellOutputMetadata; |
| 1158 | } |
| 1159 | |
| 1160 | export type CellOutput = |
| 1161 | | CellStreamOutput |
nothing calls this directly
no outgoing calls
no test coverage detected