UNPKG

unleash-server

Version:

Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.

10 lines 580 B
import type { Request, Response } from 'express'; import type { IUnleashConfig } from '../types/option.js'; import type { IUnleashServices } from '../services/index.js'; import Controller from './controller.js'; import type { HealthCheckSchema } from '../openapi/spec/health-check-schema.js'; export declare class HealthCheckController extends Controller { constructor(config: IUnleashConfig, { openApiService }: Pick<IUnleashServices, 'openApiService'>); getHealth(_: Request, res: Response<HealthCheckSchema>): Promise<void>; } //# sourceMappingURL=health-check.d.ts.map