unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
9 lines • 481 B
TypeScript
import type { Db } from '../../db/db';
import { EventService } from '../../services';
import type { IEventStore, IFeatureTagStore, IUnleashConfig } from '../../types';
export declare const createEventsService: (db: Db, config: IUnleashConfig) => EventService;
export declare const createFakeEventsService: (config: IUnleashConfig, stores?: {
eventStore?: IEventStore;
featureTagStore?: IFeatureTagStore;
}) => EventService;
//# sourceMappingURL=createEventsService.d.ts.map