import type { IFeatureLifecycleReadModel, StageCount, StageCountByProject, } from './feature-lifecycle-read-model-type.js'; import type { IFeatureLifecycleStage, IProjectLifecycleStageDuration, } from '../../types/index.js'; export class FakeFeatureLifecycleReadModel implements IFeatureLifecycleReadModel { getAllWithStageDuration(): Promise { return Promise.resolve([]); } getStageCount(): Promise { return Promise.resolve([]); } getStageCountByProject(): Promise { return Promise.resolve([]); } findCurrentStage( feature: string, ): Promise { return Promise.resolve(undefined); } }