UNPKG

hal-4-angular

Version:

This Angular module offers a HAL/JSON http-client to easily interact with a Spring Data Rest API or any API that implements the Spring Data Rest resource model

14 lines (13 loc) 656 B
import { HttpClient } from '@angular/common/http'; import { ExternalConfigurationHandlerInterface } from './external-configuration.handler'; import { ExternalConfiguration } from './ExternalConfiguration'; export declare class ExternalService { private externalConfigurationService; constructor(externalConfigurationService: ExternalConfigurationHandlerInterface); updateExternalConfigurationHandlerInterface(externalConfigurationService: ExternalConfigurationHandlerInterface): void; getExternalConfiguration(): ExternalConfiguration; getProxyUri(): string; getRootUri(): string; getURL(): string; getHttp(): HttpClient; }