@dasch-swiss/dsp-js
Version:
JavaScript library that handles API requests to Knora
14 lines (13 loc) • 366 B
TypeScript
import { ApiResponseData } from "../../../models/api-response-data";
import { Endpoint } from "../../endpoint";
/**
* An endpoint to get DSP's version.
*
* @category Endpoint System
*/
export declare class VersionEndpointSystem extends Endpoint {
/**
* Returns DSP's version.
*/
getVersion(): import("rxjs").Observable<ApiResponseData<any>>;
}