UNPKG

koneksi-ts-sdk

Version:

A JS/TS SDK for interacting with Koneksi API services

17 lines (16 loc) 430 B
import { HttpClient } from "../http-client.js"; export interface HealthResponse { data: any; message: string; meta: any; status: string; } export declare class HealthOperations { private httpClient; constructor(httpClient: HttpClient); /** * Check the health status of the API service * @returns Promise<HealthResponse> - Health check response */ check(): Promise<HealthResponse>; }