Fake Mirrors
    Preparing search index...

    Interface ReplServer

    Defines the public contract for a repl-server.

    The REPL (Read-Eval-Print-Loop) server provides an interactive command-line interface for system administration and debugging.

    interface ReplServer {
        start(): Promise<void>;
        stop(): Promise<void>;
    }

    Implemented by

    • Starts the REPL server and begins accepting connections.

      Returns Promise<void>

      BootstrapError If the server cannot be started.