UNPKG

@nestjs/terminus

Version:

Terminus integration provides readiness/liveness health checks for NestJS.

18 lines (17 loc) 491 B
import { HealthCheckError } from '../health-check/health-check.error'; /** * Error which gets thrown when the given storage threshold * has exceeded. * @publicApi */ export declare class StorageExceededError extends HealthCheckError { /** * Initializes the error * * @param {string} keyword The keyword (heap, rss, disk e.g.) * @param {any} cause The cause of the health check error * * @internal */ constructor(keyword: string, cause: any); }