inceptum
Version:
hipages take on the foundational library for enterprise-grade apps written in NodeJS
10 lines (9 loc) • 373 B
TypeScript
import { HealthCheck, HealthCheckResult, HealthCheckType } from '../health/HealthCheck';
import { MySQLClient } from './MySQLClient';
export declare class MySQLHealthCheck extends HealthCheck {
private readonly;
mysqlClient: MySQLClient;
constructor(name: string, readonly: boolean);
getType(): HealthCheckType;
doCheck(): Promise<HealthCheckResult>;
}