Fix order of API and mark language as readonly (#15216)
This commit is contained in:
Родитель
5107d8e06a
Коммит
975cc38d85
|
@ -210,19 +210,19 @@ export type KernelStatus =
|
|||
* Represents a Jupyter Kernel.
|
||||
*/
|
||||
export interface Kernel {
|
||||
/**
|
||||
* The current status of the kernel.
|
||||
*/
|
||||
readonly status: KernelStatus;
|
||||
/**
|
||||
* An event emitted when the kernel status changes.
|
||||
*/
|
||||
onDidChangeStatus: Event<KernelStatus>;
|
||||
/**
|
||||
* The current status of the kernel.
|
||||
*/
|
||||
readonly status: KernelStatus;
|
||||
/**
|
||||
* Language of the kernel.
|
||||
* E.g. python, r, julia, etc.
|
||||
*/
|
||||
language: string;
|
||||
readonly language: string;
|
||||
/**
|
||||
* Executes code in the kernel without affecting the execution count & execution history.
|
||||
*
|
||||
|
|
Загрузка…
Ссылка в новой задаче