import { Distribution, Progress, MyProgress } from '~/domain/models/metrics/metrics' export interface MetricsRepository { fetchCategoryDistribution(projectId: string): Promise fetchSpanDistribution(projectId: string): Promise fetchRelationDistribution(projectId: string): Promise fetchMemberProgress(projectId: string): Promise fetchMyProgress(projectId: string): Promise }