Stone.js API
    Preparing search index...

    Options for the isomorphic RealtimeClient.

    interface RealtimeClientOptions {
        protocols?: string | string[];
        url: string;
        WebSocket?: any;
    }
    Index
    protocols?: string | string[]

    Optional subprotocols passed to the WebSocket.

    url: string

    The WebSocket endpoint to connect to.

    WebSocket?: any

    A WebSocket implementation to use (defaults to the global one, else lazily ws on Node).