unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
6 lines • 393 B
TypeScript
import type { Db } from '../../db/db.js';
import type { IUnleashConfig } from '../../types/index.js';
import ContextService from './context-service.js';
export declare const createContextService: (config: IUnleashConfig) => (db: Db) => ContextService;
export declare const createFakeContextService: (config: IUnleashConfig) => ContextService;
//# sourceMappingURL=createContextService.d.ts.map