(options?: {
token?: string;
port?: number;
useCert?: boolean;
jupyterLab?: boolean;
password?: string;
detached?: boolean;
standalone?: boolean;
})
| 245 | } |
| 246 | |
| 247 | export async function startJupyterServer(options?: { |
| 248 | token?: string; |
| 249 | port?: number; |
| 250 | useCert?: boolean; |
| 251 | jupyterLab?: boolean; |
| 252 | password?: string; |
| 253 | detached?: boolean; |
| 254 | standalone?: boolean; |
| 255 | }): Promise<{ url: string } & IDisposable> { |
| 256 | return API.startJupyterServer(options); |
| 257 | } |
| 258 | |
| 259 | export async function stopJupyterServer() { |
| 260 | if (API.stopJupyterServer) { |
no test coverage detected