@datalayer/core
Version:
[](https://datalayer.io)
16 lines (15 loc) • 549 B
TypeScript
import type { HealthzPingResponse } from '../../models/Common';
/**
* Health check ping endpoint for Spacer service
* @param baseUrl - Base URL for the API (defaults to production Spacer URL)
* @returns Health check response
* @throws {Error} If the health check fails
*
* @remarks
* This endpoint provides a basic health check for the Spacer service.
* It returns the current status of the service.
*
* Expected status codes:
* - 200: Service is healthy
*/
export declare const ping: (baseUrl?: string) => Promise<HealthzPingResponse>;