frontend/.pnpm-store/v3/files/8e/cbd4935ad5ecc751d55ca97063d33faa57373db15a5225d1b7bd3c810ecc2524ecf9576fd8f97fd647c41a7d093ed19f2ea616238b798dec1db5c1b4b8f08a

17 lines
567 B
Plaintext

export declare class StatusService {
/**
* Get
* A very basic status/health endpoint that just checks if the database connection is available. <br> The available information depth will be expanded later.
* @result any Successful response
* @throws ApiError
*/
static statusControllerGet(): Promise<any>;
/**
* Get version
* A very basic endpoint that just returns the curent package version.
* @result any Successful response
* @throws ApiError
*/
static statusControllerGetVersion(): Promise<any>;
}