rename hasExecutionOrder to supportsExecutionOrder

This commit is contained in:
Johannes Rieken
2021-05-31 16:09:05 +02:00
parent f2fb2b8cbe
commit 2031df2653
4 changed files with 17 additions and 7 deletions

View File

@@ -915,7 +915,7 @@ export interface INotebookKernelDto2 {
description?: string;
supportedLanguages?: string[];
supportsInterrupt?: boolean;
hasExecutionOrder?: boolean;
supportsExecutionOrder?: boolean;
preloads?: { uri: UriComponents; provides: string[] }[];
}