Variable httpServicesProviderConst

httpServicesProvider: {
    apiClientProvider: ResourceCreator<"provider", "register", ((options?: APIClientProviderOptions) => ((app: Jimpex) => void)), ProviderRegisterFn<Jimpex>>;
    httpProvider: Resource<"provider", "register", ProviderRegisterFn<Jimpex>>;
    responsesBuilderProvider: Resource<"provider", "register", ProviderRegisterFn<Jimpex>>;
} & Record<string, Resource<"provider", "register", ProviderRegisterFn<Jimpex>>> & {} & {} & Record<string, unknown> = ...

Registers all the HTTP services on the container.

// Register the collection on the container
container.register(httpServicesProvider);
// Getting access to one the services instance
const apiClient = container.get<APIClient>('apiClient');