UNPKG

unleash-server

Version:

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

19 lines 515 B
/* eslint-disable @typescript-eslint/no-unused-vars */ export default class FakeProjectStatsStore { constructor() { this.stats = {}; } async updateProjectStats(projectId, stats) { this.stats[projectId] = stats; } async getProjectStats(projectId) { return this.stats[projectId]; } async getTimeToProdDates() { return []; } async getTimeToProdDatesForFeatureToggles() { return []; } } //# sourceMappingURL=fake-project-stats-store.js.map