Fix order of API and mark language as readonly (#15216)

This commit is contained in:
Don Jayamanne 2024-02-22 07:43:43 +11:00 коммит произвёл GitHub
Родитель 5107d8e06a
Коммит 975cc38d85
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 5 добавлений и 5 удалений

10
src/api.d.ts поставляемый
Просмотреть файл

@ -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.
*