Expose prop to determine if custom prop is used (#208145)

This commit is contained in:
Don Jayamanne
2024-03-20 01:12:07 +01:00
committed by GitHub
parent f29a4bcaf7
commit c0fa2a7b47

View File

@@ -125,6 +125,9 @@ export function activate(context: vscode.ExtensionContext) {
return {
get dropCustomMetadata() {
return !useCustomPropertyInMetadata();
},
exportNotebook: (notebook: vscode.NotebookData): string => {
return exportNotebook(notebook, serializer);
},