10 lines
340 B
TypeScript
10 lines
340 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>;
|
|
}
|