Pass cell metadata and execution summary

This commit is contained in:
Don Jayamanne
2021-06-14 10:29:14 -07:00
parent 84220dfa80
commit 72316e67b1

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)
};
}