import type { ChampionshipStanding } from '../entities/ChampionshipStanding'; export interface IChampionshipStandingRepository { findBySeasonAndChampionship( seasonId: string, championshipId: string, ): Promise; saveAll(standings: ChampionshipStanding[]): Promise; }