UNPKG

@dasch-swiss/dsp-js

Version:

JavaScript library that handles API requests to Knora

15 lines (14 loc) 474 B
import { ApiResponseData } from "../../../models/api-response-data"; import { HealthResponse } from "../../../models/system/health-response"; import { Endpoint } from "../../endpoint"; /** * An endpoint to get Knora's state of health. * * @category Endpoint System */ export declare class HealthEndpointSystem extends Endpoint { /** * Returns Knora's state of health. */ getHealthStatus(): import("rxjs").Observable<ApiResponseData<HealthResponse>>; }