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

    Type Alias ServiceImplementationsParams<Context, ServiceName, EndpointsInit, WebSocketsInit>

    ServiceImplementationsParams: (
        KeyCount<OmitIndexSignature<EndpointsInit>> extends 0
            ? { endpoints?: never }
            : {
                endpoints: EndpointImplementations<
                    NoInfer<Context>,
                    NoInfer<EndpointsInit>,
                    NoInfer<ServiceName>,
                >;
            }
    ) & (
        KeyCount<OmitIndexSignature<WebSocketsInit>> extends 0
            ? { webSockets?: never }
            : {
                webSockets: WebSocketImplementations<
                    NoInfer<Context>,
                    NoInfer<ServiceName>,
                    NoInfer<WebSocketsInit>,
                >;
            }
    ) & {
        postHook?: PostHook<Context, ServiceName, EndpointsInit, WebSocketsInit>;
    }

    Parameters for implementations for implementService.

    Type Parameters

    Type declaration