unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
8 lines • 308 B
TypeScript
import type { IUnleashStores } from '../types/stores.js';
declare class HealthService {
private featureTypeStore;
constructor({ featureTypeStore, }: Pick<IUnleashStores, 'featureTypeStore'>);
dbIsUp(): Promise<boolean>;
}
export default HealthService;
//# sourceMappingURL=health-service.d.ts.map