Pass cell metadata and execution summary

This commit is contained in:
Don Jayamanne
2021-06-14 10:29:14 -07:00
committed by Johannes Rieken
parent 3f276167d7
commit 668b117915

View File

@@ -29,6 +29,8 @@ export namespace NotebookDto {
cellKind: cell.cellKind,
language: cell.language,
source: cell.source,
internalMetadata: cell.internalMetadata,
metadata: cell.metadata,
outputs: cell.outputs.map(toNotebookOutputDto)
};
}