UNPKG

sjursen-digital-watchtower

Version:

A TypeScript Node.js SDK for Watchtower, an Intelligence as a Service (IaaS) platform that uses Google's Gemini AI model to transform traditional logging into an active intelligence system with predictive analytics and automated decision-making capabiliti

11 lines (10 loc) 325 B
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>; }