Skip to content

Commit 1ba62de

Browse files
[Ignore] Update Notebook dts (#2851)
Co-authored-by: TylerLeonhardt <TylerLeonhardt@users.noreply.github.com>
1 parent 2d30df7 commit 1ba62de

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

vscode.proposed.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -385,6 +385,11 @@ declare module 'vscode' {
385385
readonly language: string;
386386
}
387387

388+
export interface NotebookCellMetadataChangeEvent {
389+
readonly document: NotebookDocument;
390+
readonly cell: NotebookCell;
391+
}
392+
388393
export interface NotebookCellData {
389394
readonly cellKind: CellKind;
390395
readonly source: string;
@@ -575,6 +580,7 @@ declare module 'vscode' {
575580
export const onDidChangeNotebookCells: Event<NotebookCellsChangeEvent>;
576581
export const onDidChangeCellOutputs: Event<NotebookCellOutputsChangeEvent>;
577582
export const onDidChangeCellLanguage: Event<NotebookCellLanguageChangeEvent>;
583+
export const onDidChangeCellMetadata: Event<NotebookCellMetadataChangeEvent>;
578584
/**
579585
* Create a document that is the concatenation of all notebook cells. By default all code-cells are included
580586
* but a selector can be provided to narrow to down the set of cells.

0 commit comments

Comments
 (0)