prefix api object with api-prefix, like apiCell

This commit is contained in:
Johannes Rieken
2021-04-21 15:34:44 +02:00
parent e468d47ed8
commit e2c9703995
8 changed files with 126 additions and 126 deletions

View File

@@ -1055,7 +1055,7 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
},
get notebookDocuments(): vscode.NotebookDocument[] {
checkProposedApiEnabled(extension);
return extHostNotebook.notebookDocuments.map(d => d.notebookDocument);
return extHostNotebook.notebookDocuments.map(d => d.apiNotebook);
},
registerNotebookSerializer(viewType, serializer, options) {
checkProposedApiEnabled(extension);