unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
9 lines • 644 B
TypeScript
import type { IFeatureLifecycleReadModel, StageCount, StageCountByProject } from './feature-lifecycle-read-model-type.js';
import type { IFeatureLifecycleStage, IProjectLifecycleStageDuration } from '../../types/index.js';
export declare class FakeFeatureLifecycleReadModel implements IFeatureLifecycleReadModel {
getAllWithStageDuration(): Promise<IProjectLifecycleStageDuration[]>;
getStageCount(): Promise<StageCount[]>;
getStageCountByProject(): Promise<StageCountByProject[]>;
findCurrentStage(_feature: string): Promise<IFeatureLifecycleStage | undefined>;
}
//# sourceMappingURL=fake-feature-lifecycle-read-model.d.ts.map