1 parent 54fb755 commit d0bccd6Copy full SHA for d0bccd6
1 file changed
src/client/jupyter/jupyter_client/contracts.ts
@@ -6,8 +6,9 @@ export interface IJupyterClient {
6
shutdownkernel(kernelUUID: string): Promise<any>;
7
interruptKernel(kernelUUID: string): Promise<any>;
8
restartKernel(kernelUUID: string): Promise<any>;
9
+ runCode(code: string): Promise<any>;
10
}
11
12
export enum KernelCommand {
- shutdown,restart,interrupt
13
+ shutdown, restart, interrupt
14
0 commit comments