a-jupyterlite-session
Version:
A JupyterLite extension.
12 lines (11 loc) • 303 B
TypeScript
import { Token } from '@lumino/coreutils';
/**
* The token for the JupyterLite session singleton.
*/
export declare const IJupyterLiteSession: Token<IJupyterLiteSession>;
/**
* An interface for the JupyterLite session singleton.
*/
export interface IJupyterLiteSession {
sessionPath: string;
}