UNPKG

unleash-server

Version:

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

11 lines 680 B
import type { IProjectStats } from '../../lib/features/project/project-service'; import type { ICreateEnabledDates, IProjectStatsStore } from '../../lib/types/stores/project-stats-store-type'; import type { DoraFeaturesSchema } from '../../lib/openapi'; export default class FakeProjectStatsStore implements IProjectStatsStore { private stats; updateProjectStats(projectId: string, stats: IProjectStats): Promise<void>; getProjectStats(projectId: string): Promise<IProjectStats>; getTimeToProdDates(): Promise<ICreateEnabledDates[]>; getTimeToProdDatesForFeatureToggles(): Promise<DoraFeaturesSchema[]>; } //# sourceMappingURL=fake-project-stats-store.d.ts.map