add local resource root and cancelCells so that Kernel2 is very similar to Kernel

This commit is contained in:
Johannes Rieken
2021-04-07 15:12:45 +02:00
parent 9221eb9697
commit 84f3054624
5 changed files with 17 additions and 7 deletions

View File

@@ -902,7 +902,8 @@ export interface MainThreadNotebookDocumentsShape extends IDisposable {
export interface INotebookKernelDto2 {
id: string;
selector: NotebookSelector;
displayName: string;
extensionName: string;
extensionLocation: UriComponents;
label: string;
executeCommand: ICommandDto;
interruptCommand?: ICommandDto;
@@ -910,7 +911,7 @@ export interface INotebookKernelDto2 {
isPreferred?: boolean;
supportedLanguages: string[];
hasExecutionOrder?: boolean;
preloads?: URI[];
preloads?: UriComponents[];
}
export interface MainThreadNotebookKernelsShape extends IDisposable {