api todos, remove unused type

This commit is contained in:
Johannes Rieken 2021-04-12 17:18:15 +02:00
parent b7d7aaca74
commit 95fe64c807
No known key found for this signature in database
GPG key ID: 96634B5AF12F8798

View file

@ -1204,8 +1204,11 @@ declare module 'vscode' {
export interface NotebookCellsChangeData {
readonly start: number;
// todo@API end? Use NotebookCellRange instead?
readonly deletedCount: number;
// todo@API removedCells, deletedCells?
readonly deletedItems: NotebookCell[];
// todo@API addedCells, insertedCells, newCells?
readonly items: NotebookCell[];
}
@ -1227,16 +1230,6 @@ declare module 'vscode' {
readonly cells: NotebookCell[];
}
export interface NotebookCellLanguageChangeEvent {
/**
* The affected document.
*/
readonly document: NotebookDocument;
readonly cell: NotebookCell;
readonly language: string;
}
export interface NotebookCellMetadataChangeEvent {
readonly document: NotebookDocument;
readonly cell: NotebookCell;