unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
8 lines • 640 B
TypeScript
import type { Db } from '../../db/db.js';
import type { IUnleashConfig } from '../../types/index.js';
import ExportImportService from './export-import-service.js';
import type { DeferredServiceFactory } from '../../db/transaction.js';
export declare const createFakeExportImportTogglesService: (config: IUnleashConfig) => ExportImportService;
export declare const deferredExportImportTogglesService: (config: IUnleashConfig) => DeferredServiceFactory<ExportImportService>;
export declare const createExportImportTogglesService: (db: Db, config: IUnleashConfig) => ExportImportService;
//# sourceMappingURL=createExportImportService.d.ts.map