import { Kernel } from '@jupyterlab/services'; import { JSONObject } from '@phosphor/coreutils'; export * from './panel'; export * from './tracker'; export * from './widget'; /** * The command IDs used by the console plugin. */ export declare namespace CommandIDs { const create: string; const clear: string; const run: string; const runForced: string; const linebreak: string; const interrupt: string; const restart: string; const closeAndShutdown: string; const open: string; const inject: string; const switchKernel: string; } /** * The arguments used to create a console. */ export interface ICreateConsoleArgs extends JSONObject { id?: string; path?: string; kernel?: Kernel.IModel; preferredLanguage?: string; }