@dasch-swiss/dsp-js
Version:
TypeScript client library for DSP-API
26 lines • 800 B
TypeScript
import { KnoraApiConfig } from '../../knora-api-config';
import { Endpoint } from '../endpoint';
import { HealthEndpointSystem } from './health/health-endpoint-system';
/**
* A client API for administering Knora.
*
* @category Endpoint System
*/
export declare class SystemEndpoint extends Endpoint {
protected readonly knoraApiConfig: KnoraApiConfig;
protected readonly path: string;
static readonly PATH_HEALTH = "/health";
/**
* An endpoint for DSP system health.
*/
readonly healthEndpoint: HealthEndpointSystem;
/**
* Constructor.
* Sets up all endpoints for this endpoint.
*
* @param knoraApiConfig
* @param path
*/
constructor(knoraApiConfig: KnoraApiConfig, path: string);
}
//# sourceMappingURL=system-endpoint.d.ts.map