unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
10 lines • 435 B
TypeScript
import type { IUnleashStores } from '../types/stores.js';
import type { IUnleashConfig } from '../types/option.js';
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