@jupyterlite/xeus 4.0.0-a0 → 4.0.0-a10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,14 +1,15 @@
1
1
  import { ContentsAPI, TDriveRequest, TDriveMethod, TDriveResponse } from '@jupyterlite/contents';
2
- import { XeusRemoteKernel } from './worker';
2
+ import { EmpackedXeusRemoteKernel } from './worker';
3
3
  /**
4
4
  * An Emscripten-compatible synchronous Contents API using shared array buffers.
5
5
  */
6
6
  export declare class SharedBufferContentsAPI extends ContentsAPI {
7
7
  request<T extends TDriveMethod>(data: TDriveRequest<T>): TDriveResponse<T>;
8
8
  }
9
- export declare class XeusCoincidentKernel extends XeusRemoteKernel {
9
+ export declare class XeusCoincidentKernel extends EmpackedXeusRemoteKernel {
10
10
  /**
11
11
  * Setup custom Emscripten FileSystem
12
12
  */
13
- mount(driveName: string, mountpoint: string, baseUrl: string): Promise<void>;
13
+ mount(driveName: string, mountpoint: string, baseUrl: string, browsingContextId: string): Promise<void>;
14
+ protected initializeStdin(baseUrl: string, browsingContextId: string): void;
14
15
  }