UNPKG

unleash-server

Version:

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

9 lines 440 B
import type { Db } from '../../types/index.js'; export type GetProductionChanges = () => Promise<{ last30: number; last60: number; last90: number; }>; export declare const createGetProductionChanges: (db: Db) => GetProductionChanges; export declare const createFakeGetProductionChanges: (changesInProduction?: Awaited<ReturnType<GetProductionChanges>>) => GetProductionChanges; //# sourceMappingURL=getProductionChanges.d.ts.map