lfk-client-js/dist/services/StatusService.d.ts
Nicolai Ort ad90844846
All checks were successful
continuous-integration/drone Build is passing
Fresh dist
2023-02-02 16:14:10 +01:00

17 lines
569 B
TypeScript

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.
* @returns any Successful response
* @throws ApiError
*/
static statusControllerGet(): Promise<any>;
/**
* Get version
* A very basic endpoint that just returns the curent package version.
* @returns any Successful response
* @throws ApiError
*/
static statusControllerGetVersion(): Promise<any>;
}