rest-vir - v1.0.0
    Preparing search index...

    Type Alias WebSocketImplementations<Context, ServiceName, WebSocketsInit>

    WebSocketImplementations: WebSocketsInit extends NoParam
        ? Record<EndpointPathBase, WebSocketImplementation>
        : {
            [WebSocketPath in keyof WebSocketsInit]: WebSocketsInit[WebSocketPath] extends WebSocketInit
                ? WebSocketPath extends EndpointPathBase
                    ? WebSocketImplementation<
                        Context,
                        ServiceName,
                        WithFinalWebSocketProps<WebSocketsInit[WebSocketPath], WebSocketPath>,
                    >
                    : never
                : never
        }

    All WebSockets implementations to match the service definition's WebSockets.

    Type Parameters