watchtower-node-sdk
Version:
A TypeScript Node.js SDK for the Watchtower API, providing API key management, connection string generation, and more
11 lines (10 loc) • 325 B
TypeScript
import { BaseEndpoint } from '../base';
import { HealthResponse } from './types';
export declare class HealthEndpoint extends BaseEndpoint {
constructor(client: any);
/**
* Check the health status of the API
* @returns Promise with the health status response
*/
check(): Promise<HealthResponse>;
}