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