UNPKG

unleash-server

Version:

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

6 lines 425 B
import type { Db } from '../../db/db'; import type { IUnleashConfig } from '../../types'; import { FeatureSearchService } from './feature-search-service'; export declare const createFeatureSearchService: (config: IUnleashConfig) => (db: Db) => FeatureSearchService; export declare const createFakeFeatureSearchService: (config: IUnleashConfig) => FeatureSearchService; //# sourceMappingURL=createFeatureSearchService.d.ts.map