From 475d63f6b5c8687a90864c911ca545420b062caf Mon Sep 17 00:00:00 2001 From: rkeithhill Date: Sat, 1 Aug 2020 22:05:03 +0000 Subject: [PATCH] [Ignore] Update Notebook dts --- vscode.proposed.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vscode.proposed.d.ts b/vscode.proposed.d.ts index 7b14a50952..a447086312 100644 --- a/vscode.proposed.d.ts +++ b/vscode.proposed.d.ts @@ -385,6 +385,11 @@ declare module 'vscode' { readonly language: string; } + export interface NotebookCellMetadataChangeEvent { + readonly document: NotebookDocument; + readonly cell: NotebookCell; + } + export interface NotebookCellData { readonly cellKind: CellKind; readonly source: string; @@ -575,6 +580,7 @@ declare module 'vscode' { export const onDidChangeNotebookCells: Event; export const onDidChangeCellOutputs: Event; export const onDidChangeCellLanguage: Event; + export const onDidChangeCellMetadata: Event; /** * Create a document that is the concatenation of all notebook cells. By default all code-cells are included * but a selector can be provided to narrow to down the set of cells.