import * as nbformat from '@jupyterlab/nbformat'; import { JSONObject } from '@lumino/coreutils'; export interface IOptions { session: string; channel: T['channel']; msgType: T['header']['msg_type']; content: T['content']; buffers?: (ArrayBuffer | ArrayBufferView)[]; metadata?: JSONObject; msgId?: string; username?: string; parentHeader?: T['parent_header']; } export declare function createMessage(options: IOptions): T; export declare function createMessage>(options: IOptions): T; export declare function createMessage>(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage>(options: IOptions): T; export declare function createMessage>(options: IOptions): T; export declare function createMessage>(options: IOptions): T; export declare function createMessage>(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; export declare function createMessage(options: IOptions): T; /** * @hidden * #### Notes * Debug messages are experimental messages that are not in the official * kernel message specification. As such, this function is *NOT* considered * part of the public API, and may change without notice. */ export declare function createMessage(options: IOptions): T; /** * @hidden * #### Notes * Debug messages are experimental messages that are not in the official * kernel message specification. As such, this function is *NOT* considered * part of the public API, and may change without notice. */ export declare function createMessage(options: IOptions): T; /** * @hidden * #### Notes * Debug messages are experimental messages that are not in the official * kernel message specification. As such, this function is *NOT* considered * part of the public API, and may change without notice. */ export declare function createMessage(options: IOptions): T; /** * Shell message types. */ export declare type ShellMessageType = 'comm_close' | 'comm_info_reply' | 'comm_info_request' | 'comm_msg' | 'comm_open' | 'complete_reply' | 'complete_request' | 'execute_reply' | 'execute_request' | 'history_reply' | 'history_request' | 'inspect_reply' | 'inspect_request' | 'interrupt_reply' | 'interrupt_request' | 'is_complete_reply' | 'is_complete_request' | 'kernel_info_reply' | 'kernel_info_request' | 'shutdown_request'; /** * Control message types. * * #### Notes * Debug messages are experimental messages that are not in the official * kernel message specification. As such, debug message types are *NOT* * considered part of the public API, and may change without notice. */ export declare type ControlMessageType = 'debug_request' | 'debug_reply'; /** * IOPub message types. * * #### Notes * Debug messages are experimental messages that are not in the official * kernel message specification. As such, debug message types are *NOT* * considered part of the public API, and may change without notice. */ export declare type IOPubMessageType = 'clear_output' | 'comm_close' | 'comm_msg' | 'comm_open' | 'display_data' | 'error' | 'execute_input' | 'execute_result' | 'shutdown_reply' | 'status' | 'stream' | 'update_display_data' | 'debug_event'; /** * Stdin message types. */ export declare type StdinMessageType = 'input_request' | 'input_reply'; /** * Jupyter message types. */ export declare type MessageType = IOPubMessageType | ShellMessageType | ControlMessageType | StdinMessageType; /** * The valid Jupyter channel names in a message to a frontend. */ export declare type Channel = 'shell' | 'control' | 'iopub' | 'stdin'; /** * Kernel message header content. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#general-message-format). * * **See also:** [[IMessage]] */ export interface IHeader { /** * ISO 8601 timestamp for when the message is created */ date: string; /** * Message id, typically UUID, must be unique per message */ msg_id: string; /** * Message type */ msg_type: T; /** * Session id, typically UUID, should be unique per session. */ session: string; /** * The user sending the message */ username: string; /** * The message protocol version, should be 5.1, 5.2, 5.3, etc. */ version: string; } /** * Kernel message specification. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#general-message-format). */ export interface IMessage { /** * An optional list of binary buffers. */ buffers?: (ArrayBuffer | ArrayBufferView)[]; /** * The channel on which the message is transmitted. */ channel: Channel; /** * The content of the message. */ content: Message['content']; /** * The message header. */ header: IHeader; /** * Metadata associated with the message. */ metadata: JSONObject; /** * The parent message */ parent_header: IHeader | {}; } /** * A kernel message on the `'shell'` channel. */ export interface IShellMessage extends IMessage { channel: 'shell'; } /** * A kernel message on the `'control'` channel. */ export interface IControlMessage extends IMessage { channel: 'control'; } /** * A message type for shell or control messages. * * #### Notes * This convenience is so we can use it as a generic type constraint. */ export declare type IShellControlMessage = IShellMessage | IControlMessage; /** * A kernel message on the `'iopub'` channel. */ export interface IIOPubMessage extends IMessage { channel: 'iopub'; } /** * A kernel message on the `'stdin'` channel. */ export interface IStdinMessage extends IMessage { channel: 'stdin'; } /** * Message types. * * #### Notes * Debug messages are experimental messages that are not in the official * kernel message specification. As such, debug message types are *NOT* * considered part of the public API, and may change without notice. */ export declare type Message = IClearOutputMsg | ICommCloseMsg<'iopub'> | ICommCloseMsg<'shell'> | ICommInfoReplyMsg | ICommInfoRequestMsg | ICommMsgMsg<'iopub'> | ICommMsgMsg<'shell'> | ICommOpenMsg<'iopub'> | ICommOpenMsg<'shell'> | ICompleteReplyMsg | ICompleteRequestMsg | IDisplayDataMsg | IErrorMsg | IExecuteInputMsg | IExecuteReplyMsg | IExecuteRequestMsg | IExecuteResultMsg | IHistoryReplyMsg | IHistoryRequestMsg | IInfoReplyMsg | IInfoRequestMsg | IInputReplyMsg | IInputRequestMsg | IInspectReplyMsg | IInspectRequestMsg | IIsCompleteReplyMsg | IIsCompleteRequestMsg | IStatusMsg | IStreamMsg | IUpdateDisplayDataMsg | IDebugRequestMsg | IDebugReplyMsg | IDebugEventMsg; /** * A `'stream'` message on the `'iopub'` channel. * * See [Streams](https://jupyter-client.readthedocs.io/en/latest/messaging.html#streams-stdout-stderr-etc). */ export interface IStreamMsg extends IIOPubMessage<'stream'> { content: { name: 'stdout' | 'stderr'; text: string; }; } /** * Test whether a kernel message is a `'stream'` message. */ export declare function isStreamMsg(msg: IMessage): msg is IStreamMsg; /** * A `'display_data'` message on the `'iopub'` channel. * * See [Display data](https://jupyter-client.readthedocs.io/en/latest/messaging.html#display-data). */ export interface IDisplayDataMsg extends IIOPubMessage<'display_data'> { content: { data: nbformat.IMimeBundle; metadata: nbformat.OutputMetadata; transient?: { display_id?: string; }; }; } /** * Test whether a kernel message is an `'display_data'` message. */ export declare function isDisplayDataMsg(msg: IMessage): msg is IDisplayDataMsg; /** * An `'update_display_data'` message on the `'iopub'` channel. * * See [Update Display data](https://jupyter-client.readthedocs.io/en/latest/messaging.html#update-display-data). */ export interface IUpdateDisplayDataMsg extends IIOPubMessage<'update_display_data'> { content: IDisplayDataMsg['content'] & { transient: { display_id: string; }; }; } /** * Test whether a kernel message is an `'update_display_data'` message. */ export declare function isUpdateDisplayDataMsg(msg: IMessage): msg is IUpdateDisplayDataMsg; /** * An `'execute_input'` message on the `'iopub'` channel. * * See [Code inputs](https://jupyter-client.readthedocs.io/en/latest/messaging.html#code-inputs). */ export interface IExecuteInputMsg extends IIOPubMessage<'execute_input'> { content: { code: string; execution_count: nbformat.ExecutionCount; }; } /** * Test whether a kernel message is an `'execute_input'` message. */ export declare function isExecuteInputMsg(msg: IMessage): msg is IExecuteInputMsg; /** * An `'execute_result'` message on the `'iopub'` channel. * * See [Execution results](https://jupyter-client.readthedocs.io/en/latest/messaging.html#id4). */ export interface IExecuteResultMsg extends IIOPubMessage<'execute_result'> { content: { execution_count: nbformat.ExecutionCount; data: nbformat.IMimeBundle; metadata: nbformat.OutputMetadata; transient?: { display_id?: string; }; }; } /** * Test whether a kernel message is an `'execute_result'` message. */ export declare function isExecuteResultMsg(msg: IMessage): msg is IExecuteResultMsg; /** * A `'error'` message on the `'iopub'` channel. * * See [Execution errors](https://jupyter-client.readthedocs.io/en/latest/messaging.html#execution-errors). */ export interface IErrorMsg extends IIOPubMessage<'error'> { content: { ename: string; evalue: string; traceback: string[]; }; } /** * Test whether a kernel message is an `'error'` message. */ export declare function isErrorMsg(msg: IMessage): msg is IErrorMsg; /** * The valid Kernel status states. * * #### Notes * The status states are: * * `unknown`: The kernel status is unknown, often because the connection * is disconnected or connecting. This state is determined by the kernel * connection status. * * `autorestarting`: The kernel is restarting, initiated by the server. * This state is set by the services library, not explicitly sent from the * kernel. * * `starting`: The kernel is starting * * `idle`: The kernel has finished processing messages. * * `busy`: The kernel is currently processing messages. * * `restarting`: The kernel is restarting. This state is sent by the * Jupyter server. * * `dead`: The kernel is dead and will not be restarted. This state is set * by the Jupyter server and is a final state. */ export declare type Status = 'unknown' | 'starting' | 'idle' | 'busy' | 'terminating' | 'restarting' | 'autorestarting' | 'dead'; /** * A `'status'` message on the `'iopub'` channel. * * See [Kernel status](https://jupyter-client.readthedocs.io/en/latest/messaging.html#kernel-status). */ export interface IStatusMsg extends IIOPubMessage<'status'> { content: { execution_state: Status; }; } /** * Test whether a kernel message is a `'status'` message. */ export declare function isStatusMsg(msg: IMessage): msg is IStatusMsg; /** * A `'clear_output'` message on the `'iopub'` channel. * * See [Clear output](https://jupyter-client.readthedocs.io/en/latest/messaging.html#clear-output). */ export interface IClearOutputMsg extends IIOPubMessage<'clear_output'> { content: { wait: boolean; }; } /** * Test whether a kernel message is a `'clear_output'` message. */ export declare function isClearOutputMsg(msg: IMessage): msg is IClearOutputMsg; /** * An experimental `'debug_event'` message on the `'iopub'` channel * * @hidden * * #### Notes * Debug messages are experimental messages that are not in the official * kernel message specification. As such, this is *NOT* considered * part of the public API, and may change without notice. */ export interface IDebugEventMsg extends IIOPubMessage<'debug_event'> { content: { seq: number; type: 'event'; event: string; body?: any; }; } /** * Test whether a kernel message is an experimental `'debug_event'` message. * * @hidden * * #### Notes * Debug messages are experimental messages that are not in the official * kernel message specification. As such, this is *NOT* considered * part of the public API, and may change without notice. */ export declare function isDebugEventMsg(msg: IMessage): msg is IDebugEventMsg; /** * A `'comm_open'` message on the `'iopub'` channel. * * See [Comm open](https://jupyter-client.readthedocs.io/en/latest/messaging.html#opening-a-comm). */ export interface ICommOpenMsg extends IMessage<'comm_open'> { channel: T; content: { comm_id: string; target_name: string; data: JSONObject; target_module?: string; }; } /** * Test whether a kernel message is a `'comm_open'` message. */ export declare function isCommOpenMsg(msg: IMessage): msg is ICommOpenMsg; /** * A `'comm_close'` message on the `'iopub'` channel. * * See [Comm close](https://jupyter-client.readthedocs.io/en/latest/messaging.html#opening-a-comm). */ export interface ICommCloseMsg extends IMessage<'comm_close'> { channel: T; content: { comm_id: string; data: JSONObject; }; } /** * Test whether a kernel message is a `'comm_close'` message. */ export declare function isCommCloseMsg(msg: IMessage): msg is ICommCloseMsg<'iopub' | 'shell'>; /** * A `'comm_msg'` message on the `'iopub'` channel. * * See [Comm msg](https://jupyter-client.readthedocs.io/en/latest/messaging.html#opening-a-comm). */ export interface ICommMsgMsg extends IMessage<'comm_msg'> { channel: T; content: { comm_id: string; data: JSONObject; }; } /** * Test whether a kernel message is a `'comm_msg'` message. */ export declare function isCommMsgMsg(msg: IMessage): msg is ICommMsgMsg; /** * Reply content indicating a successful request. */ export interface IReplyOkContent { status: 'ok'; } /** * Reply content indicating an error. * * See the [Message spec](https://jupyter-client.readthedocs.io/en/latest/messaging.html#request-reply) for details. */ export interface IReplyErrorContent { status: 'error'; /** * Exception name */ ename: string; /** * Exception value */ evalue: string; /** * Traceback */ traceback: string[]; } /** * Reply content indicating an aborted request. * * This is [deprecated](https://jupyter-client.readthedocs.io/en/latest/messaging.html#request-reply) * in message spec 5.1. Kernels should send an 'error' reply instead. */ export interface IReplyAbortContent { status: 'abort'; } /** * A convenience type for reply content. * * This automatically unions the necessary error and abort replies required in * the [message spec](https://jupyter-client.readthedocs.io/en/latest/messaging.html#request-reply). */ declare type ReplyContent = T | IReplyErrorContent | IReplyAbortContent; /** * A `'kernel_info_request'` message on the `'shell'` channel. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#kernel-info). */ export interface IInfoRequestMsg extends IShellMessage<'kernel_info_request'> { content: {}; } /** * Test whether a kernel message is a `'kernel_info_request'` message. */ export declare function isInfoRequestMsg(msg: IMessage): msg is IInfoRequestMsg; /** * A `'kernel_info_reply'` message content. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#kernel-info). */ export interface IInfoReply extends IReplyOkContent { protocol_version: string; implementation: string; implementation_version: string; language_info: ILanguageInfo; banner: string; help_links: { text: string; url: string; }[]; } /** * The kernel language information specification. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#kernel-info). */ export interface ILanguageInfo extends nbformat.ILanguageInfoMetadata { version: string; nbconverter_exporter?: string; } /** * A `'kernel_info_reply'` message on the `'shell'` channel. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#kernel-info). */ export interface IInfoReplyMsg extends IShellMessage<'kernel_info_reply'> { parent_header: IHeader<'kernel_info_request'>; content: ReplyContent; } /** * A `'complete_request'` message. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#completion). * * **See also:** [[ICompleteReplyMsg]], [[IKernel.complete]] */ export interface ICompleteRequestMsg extends IShellMessage<'complete_request'> { content: { code: string; cursor_pos: number; }; } /** * A `'complete_reply'` message content. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#completion). * * **See also:** [[ICompleteRequest]], [[IKernel.complete]] */ interface ICompleteReply extends IReplyOkContent { matches: string[]; cursor_start: number; cursor_end: number; metadata: JSONObject; } /** * A `'complete_reply'` message on the `'shell'` channel. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#completion). * * **See also:** [[ICompleteRequest]], [[IKernel.complete]] */ export interface ICompleteReplyMsg extends IShellMessage<'complete_reply'> { parent_header: IHeader<'complete_request'>; content: ReplyContent; } /** * An `'inspect_request'` message. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#introspection). * * **See also:** [[IInspectReplyMsg]], [[[IKernel.inspect]]] */ export interface IInspectRequestMsg extends IShellMessage<'inspect_request'> { content: { code: string; cursor_pos: number; detail_level: 0 | 1; }; } /** * A `'inspect_reply'` message content. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#introspection). * * **See also:** [[IInspectRequest]], [[IKernel.inspect]] */ export interface IInspectReply extends IReplyOkContent { found: boolean; data: JSONObject; metadata: JSONObject; } /** * A `'inspect_reply'` message on the `'shell'` channel. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#introspection). * * **See also:** [[IInspectRequest]], [[IKernel.inspect]] */ export interface IInspectReplyMsg extends IShellMessage<'inspect_reply'> { parent_header: IHeader<'inspect_request'>; content: ReplyContent; } /** * A `'history_request'` message. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#history). * * **See also:** [[IHistoryReplyMsg]], [[[IKernel.history]]] */ export interface IHistoryRequestMsg extends IShellMessage<'history_request'> { content: IHistoryRequestRange | IHistoryRequestSearch | IHistoryRequestTail; } /** * The content of a `'history_request'` range message. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#history). * * **See also:** [[IHistoryReply]], [[[IKernel.history]]] */ export interface IHistoryRequestRange { output: boolean; raw: boolean; hist_access_type: 'range'; session: number; start: number; stop: number; } /** * The content of a `'history_request'` search message. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#history). * * **See also:** [[IHistoryReply]], [[[IKernel.history]]] */ export interface IHistoryRequestSearch { output: boolean; raw: boolean; hist_access_type: 'search'; n: number; pattern: string; unique: boolean; } /** * The content of a `'history_request'` tail message. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#history). * * **See also:** [[IHistoryReply]], [[[IKernel.history]]] */ export interface IHistoryRequestTail { output: boolean; raw: boolean; hist_access_type: 'tail'; n: number; } /** * A `'history_reply'` message content. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#history). * * **See also:** [[IHistoryRequest]], [[IKernel.history]] */ export interface IHistoryReply extends IReplyOkContent { history: [number, number, string][] | [number, number, [string, string]][]; } /** * A `'history_reply'` message on the `'shell'` channel. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#history). * * **See also:** [[IHistoryRequest]], [[IKernel.history]] */ export interface IHistoryReplyMsg extends IShellMessage<'history_reply'> { parent_header: IHeader<'history_request'>; content: ReplyContent; } /** * An `'is_complete_request'` message. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#code-completeness). * * **See also:** [[IIsCompleteReplyMsg]], [[IKernel.isComplete]] */ export interface IIsCompleteRequestMsg extends IShellMessage<'is_complete_request'> { content: { code: string; }; } /** * An `'is_complete_reply'` message on the `'stream'` channel. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#code-completeness). * * **See also:** [[IIsCompleteRequest]], [[IKernel.isComplete]] */ export interface IIsCompleteReplyMsg extends IShellMessage<'is_complete_reply'> { parent_header: IHeader<'is_complete_request'>; content: ReplyContent; } /** * An 'incomplete' completion reply */ export interface IIsCompleteReplyIncomplete { status: 'incomplete'; indent: string; } /** * A completion reply for completion or invalid states. */ export interface IIsCompleteReplyOther { status: 'complete' | 'invalid' | 'unknown'; } /** * An `execute_request` message on the `'shell'` channel. */ export interface IExecuteRequestMsg extends IShellMessage<'execute_request'> { content: { /** * The code to execute. */ code: string; /** * Whether to execute the code as quietly as possible. * The default is `false`. */ silent?: boolean; /** * Whether to store history of the execution. * The default `true` if silent is False. * It is forced to `false ` if silent is `true`. */ store_history?: boolean; /** * A mapping of names to expressions to be evaluated in the * kernel's interactive namespace. */ user_expressions?: JSONObject; /** * Whether to allow stdin requests. * The default is `true`. */ allow_stdin?: boolean; /** * Whether to the abort execution queue on an error. * The default is `false`. */ stop_on_error?: boolean; }; } /** * The content of an `execute-reply` message. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#execution-results). */ export interface IExecuteCount { execution_count: nbformat.ExecutionCount; } /** * A convenience type for a base for an execute reply content. */ declare type IExecuteReplyBase = IExecuteCount & IReplyOkContent; /** * The `'execute_reply'` contents for an `'ok'` status. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#execution-results). */ export interface IExecuteReply extends IExecuteReplyBase { /** * A list of payload objects. * Payloads are considered deprecated. * The only requirement of each payload object is that it have a 'source' * key, which is a string classifying the payload (e.g. 'page'). */ payload?: JSONObject[]; /** * Results for the user_expressions. */ user_expressions: JSONObject; } /** * An `'execute_reply'` message on the `'stream'` channel. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#execution-results). * * **See also:** [[IExecuteRequest]], [[IKernel.execute]] */ export interface IExecuteReplyMsg extends IShellMessage<'execute_reply'> { parent_header: IHeader<'execute_request'>; content: ReplyContent & IExecuteCount; } /** * Test whether a kernel message is an `'execute_reply'` message. */ export declare function isExecuteReplyMsg(msg: IMessage): msg is IExecuteReplyMsg; /** * A `'comm_info_request'` message on the `'shell'` channel. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#comm-info). * * **See also:** [[ICommInfoReplyMsg]], [[IKernel.commInfo]] */ export interface ICommInfoRequestMsg extends IShellMessage<'comm_info_request'> { content: { /** * The comm target name to filter returned comms */ target_name?: string; }; } /** * A `'comm_info_reply'` message content. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#comm-info). * * **See also:** [[ICommInfoRequest]], [[IKernel.commInfo]] */ export interface ICommInfoReply extends IReplyOkContent { /** * Mapping of comm ids to target names. */ comms: { [commId: string]: { target_name: string; }; }; } /** * A `'comm_info_reply'` message on the `'shell'` channel. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#comm-info). * * **See also:** [[ICommInfoRequestMsg]], [[IKernel.commInfo]] */ export interface ICommInfoReplyMsg extends IShellMessage<'comm_info_reply'> { parent_header: IHeader<'comm_info_request'>; content: ReplyContent; } /** * An experimental `'debug_request'` message on the `'control'` channel. * * @hidden * * #### Notes * Debug messages are experimental messages that are not in the official * kernel message specification. As such, this function is *NOT* considered * part of the public API, and may change without notice. */ export interface IDebugRequestMsg extends IControlMessage<'debug_request'> { content: { seq: number; type: 'request'; command: string; arguments?: any; }; } /** * Test whether a kernel message is an experimental `'debug_request'` message. * * @hidden * * #### Notes * Debug messages are experimental messages that are not in the official * kernel message specification. As such, this is *NOT* considered * part of the public API, and may change without notice. */ export declare function isDebugRequestMsg(msg: IMessage): msg is IDebugRequestMsg; /** * An experimental `'debug_reply'` message on the `'control'` channel. * * @hidden * * #### Notes * Debug messages are experimental messages that are not in the official * kernel message specification. As such, this is *NOT* considered * part of the public API, and may change without notice. */ export interface IDebugReplyMsg extends IControlMessage<'debug_reply'> { content: { seq: number; type: 'response'; request_seq: number; success: boolean; command: string; message?: string; body?: any; }; } /** * Test whether a kernel message is an experimental `'debug_reply'` message. * * @hidden * * #### Notes * Debug messages are experimental messages that are not in the official * kernel message specification. As such, this is *NOT* considered * part of the public API, and may change without notice. */ export declare function isDebugReplyMsg(msg: IMessage): msg is IDebugReplyMsg; /** * An `'input_request'` message on the `'stdin'` channel. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#messages-on-the-stdin-router-dealer-sockets). */ export interface IInputRequestMsg extends IStdinMessage<'input_request'> { content: { /** * The text to show at the prompt. */ prompt: string; /** * Whether the request is for a password. * If so, the frontend shouldn't echo input. */ password: boolean; }; } /** * Test whether a kernel message is an `'input_request'` message. */ export declare function isInputRequestMsg(msg: IMessage): msg is IInputRequestMsg; /** * An `'input_reply'` message content. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#messages-on-the-stdin-router-dealer-sockets). */ export interface IInputReply extends IReplyOkContent { value: string; } /** * An `'input_reply'` message on the `'stdin'` channel. * * See [Messaging in Jupyter](https://jupyter-client.readthedocs.io/en/latest/messaging.html#messages-on-the-stdin-router-dealer-sockets). */ export interface IInputReplyMsg extends IStdinMessage<'input_reply'> { parent_header: IHeader<'input_request'>; content: ReplyContent; } /** * Test whether a kernel message is an `'input_reply'` message. */ export declare function isInputReplyMsg(msg: IMessage): msg is IInputReplyMsg; export {};