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

    Type Alias MatchedServicePath<Service>

    MatchedServicePath: RequireAtLeastOne<
        {
            endpointPath: keyof Service["endpoints"];
            webSocketPath: keyof Service["webSockets"];
        },
    >

    Output for matchUrlToService.

    Type Parameters

    • Service extends Readonly<
          {
              endpoints: Record<EndpointPathBase, any>;
              webSockets: Record<EndpointPathBase, any>;
          },
      >