UNPKG

unleash-server

Version:

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

10 lines 429 B
import type { IUnleashStores } from '../types/stores'; import type { IUnleashConfig } from '../types/option'; declare class HealthService { private featureTypeStore; private logger; constructor({ featureTypeStore }: Pick<IUnleashStores, 'featureTypeStore'>, { getLogger }: Pick<IUnleashConfig, 'getLogger'>); dbIsUp(): Promise<boolean>; } export default HealthService; //# sourceMappingURL=health-service.d.ts.map