interface WebSocketHandlerDefinition {
    type:
        | "timeout"
        | "close-connection"
        | "reset-connection"
        | "ws-passthrough"
        | "ws-echo"
        | "ws-listen"
        | "ws-reject";
    dispose(): void;
    explain(): string;
}

Hierarchy (view full)

Implemented by

Properties

Methods

Properties

type:
    | "timeout"
    | "close-connection"
    | "reset-connection"
    | "ws-passthrough"
    | "ws-echo"
    | "ws-listen"
    | "ws-reject"

Methods