Initial work adding NotebookCellData.mime

For #126280
For #126417
This commit is contained in:
Matt Bierner
2021-06-15 15:16:24 -07:00
parent 92160bf660
commit cd08aa0081
11 changed files with 100 additions and 13 deletions

View File

@@ -28,6 +28,7 @@ export namespace NotebookDto {
return {
cellKind: cell.cellKind,
language: cell.language,
mime: cell.mime,
source: cell.source,
internalMetadata: cell.internalMetadata,
metadata: cell.metadata,
@@ -61,6 +62,7 @@ export namespace NotebookDto {
return {
cellKind: cell.cellKind,
language: cell.language,
mime: cell.mime,
source: cell.source,
outputs: cell.outputs.map(fromNotebookOutputDto),
metadata: cell.metadata,