UNPKG

unleash-server

Version:

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

11 lines 546 B
import type { Db, IUnleashConfig } from '../../types/index.js'; import { AccessService } from '../../services/index.js'; import type { IAccessStore, IEventStore, IRoleStore } from '../../types/index.js'; export declare const createAccessService: (db: Db, config: IUnleashConfig) => AccessService; export declare const createFakeAccessService: (config: IUnleashConfig) => { accessService: AccessService; eventStore: IEventStore; accessStore: IAccessStore; roleStore: IRoleStore; }; //# sourceMappingURL=createAccessService.d.ts.map