@lokalise/fastify-extras
Version:
Opinionated set of fastify plugins, commonly used in Lokalise
8 lines (7 loc) • 407 B
TypeScript
import type { FastifyPluginCallback } from 'fastify';
import { type HealthCheck } from './commonHealthcheckPlugin.js';
export interface StartupHealthcheckPluginOptions {
resultsLogLevel?: 'fatal' | 'error' | 'warn' | 'info' | 'debug' | 'trace' | 'silent';
healthChecks: readonly HealthCheck[];
}
export declare const startupHealthcheckPlugin: FastifyPluginCallback<StartupHealthcheckPluginOptions>;