(output: {
items: NotebookCellOutputItem[];
metadata?: { [key: string]: unknown };
})
| 228 | } |
| 229 | |
| 230 | export function getNotebookCellOutputMetadata(output: { |
| 231 | items: NotebookCellOutputItem[]; |
| 232 | metadata?: { [key: string]: unknown }; |
| 233 | }): CellOutputMetadata | undefined { |
| 234 | return output.metadata as CellOutputMetadata | undefined; |
| 235 | } |
| 236 | |
| 237 | /** |
| 238 | * Converts a Jupyter display cell output into a VSCode cell output format. |
no outgoing calls
no test coverage detected