make INotebookKernel2 extends INotebookKernel

This commit is contained in:
Johannes Rieken
2021-04-19 11:56:18 +02:00
parent 6b9bd78998
commit f9fec24b45
6 changed files with 25 additions and 51 deletions

View File

@@ -1964,8 +1964,8 @@ export interface ExtHostNotebookEditorsShape {
export interface ExtHostNotebookKernelsShape {
$acceptSelection(handle: number, uri: UriComponents, value: boolean): void;
$executeCells(handle: number, uri: UriComponents, ranges: ICellRange[]): void;
$cancelCells(handle: number, uri: UriComponents, ranges: ICellRange[]): void;
$executeCells(handle: number, uri: UriComponents, ranges: ICellRange[]): Promise<void>;
$cancelCells(handle: number, uri: UriComponents, ranges: ICellRange[]): Promise<void>;
$acceptRendererMessage(handle: number, editorId: string, message: any): void;
}