UNPKG

@datalayer/core

Version:

[![Datalayer](https://assets.datalayer.tech/datalayer-25.svg)](https://datalayer.io)

16 lines (15 loc) 549 B
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>;