File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -385,6 +385,11 @@ declare module 'vscode' {
385
385
readonly language : string ;
386
386
}
387
387
388
+ export interface NotebookCellMetadataChangeEvent {
389
+ readonly document : NotebookDocument ;
390
+ readonly cell : NotebookCell ;
391
+ }
392
+
388
393
export interface NotebookCellData {
389
394
readonly cellKind : CellKind ;
390
395
readonly source : string ;
@@ -575,6 +580,7 @@ declare module 'vscode' {
575
580
export const onDidChangeNotebookCells : Event < NotebookCellsChangeEvent > ;
576
581
export const onDidChangeCellOutputs : Event < NotebookCellOutputsChangeEvent > ;
577
582
export const onDidChangeCellLanguage : Event < NotebookCellLanguageChangeEvent > ;
583
+ export const onDidChangeCellMetadata : Event < NotebookCellMetadataChangeEvent > ;
578
584
/**
579
585
* Create a document that is the concatenation of all notebook cells. By default all code-cells are included
580
586
* but a selector can be provided to narrow to down the set of cells.
You can’t perform that action at this time.
0 commit comments