File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -365,6 +365,10 @@ declare module 'vscode' {
365
365
outputId : string ;
366
366
}
367
367
368
+ export interface NotebookDocumentMetadataChangeEvent {
369
+ readonly document : NotebookDocument ;
370
+ }
371
+
368
372
export interface NotebookCellsChangeData {
369
373
readonly start : number ;
370
374
readonly deletedCount : number ;
@@ -642,6 +646,7 @@ declare module 'vscode' {
642
646
export const onDidChangeActiveNotebookEditor : Event < NotebookEditor | undefined > ;
643
647
export const onDidChangeNotebookEditorSelection : Event < NotebookEditorSelectionChangeEvent > ;
644
648
export const onDidChangeNotebookEditorVisibleRanges : Event < NotebookEditorVisibleRangesChangeEvent > ;
649
+ export const onDidChangeNotebookDocumentMetadata : Event < NotebookDocumentMetadataChangeEvent > ;
645
650
export const onDidChangeNotebookCells : Event < NotebookCellsChangeEvent > ;
646
651
export const onDidChangeCellOutputs : Event < NotebookCellOutputsChangeEvent > ;
647
652
export const onDidChangeCellLanguage : Event < NotebookCellLanguageChangeEvent > ;
You can’t perform that action at this time.
0 commit comments