UNPKG

unleash-server

Version:

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

9 lines 502 B
import type { Db } from '../../db/db.js'; import { EventService } from '../../services/index.js'; import type { IEventStore, IFeatureTagStore, IUnleashConfig } from '../../types/index.js'; 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