interface MessagePingPongDocumentationArguments {
    messages: readonly (ResponseMessageInPingPong | RequestMessageInPingPong)[];
    messageType?:
        | "error"
        | "hello"
        | "request-file-analysis"
        | "response-file-analysis"
        | "request-repl-execution"
        | "response-repl-execution"
        | "end-repl-execution"
        | "request-slice"
        | "response-slice"
        | "request-lineage"
        | "response-lineage"
        | "request-query"
        | "response-query";
    shell: RShell;
    title?: string;
}

Properties

messageType?:
    | "error"
    | "hello"
    | "request-file-analysis"
    | "response-file-analysis"
    | "request-repl-execution"
    | "response-repl-execution"
    | "end-repl-execution"
    | "request-slice"
    | "response-slice"
    | "request-lineage"
    | "response-lineage"
    | "request-query"
    | "response-query"
shell: RShell
title?: string