Interface WebSocketEndpoint

interface WebSocketEndpoint {
    implementation?: WebSocketConstructor;
    protocols?: string | string[];
    url: string | URL;
}

Properties

implementation?: WebSocketConstructor
protocols?: string | string[]
url: string | URL