make vscode.NotebookCellRange a class

This commit is contained in:
Johannes Rieken
2021-02-15 15:47:53 +01:00
parent ebc30d6c92
commit 18c04a5716
7 changed files with 54 additions and 19 deletions

View File

@@ -1731,13 +1731,8 @@ export interface INotebookSelectionChangeEvent {
selections: number[];
}
export interface INotebookCellVisibleRange {
start: number;
end: number;
}
export interface INotebookVisibleRangesEvent {
ranges: INotebookCellVisibleRange[];
ranges: ICellRange[];
}
export interface INotebookEditorPropertiesChangeData {