import type { LeagueScoringPresetDTO } from '../ports/LeagueScoringPresetProvider'; export interface LeagueScoringPresetsViewModel { presets: LeagueScoringPresetDTO[]; totalCount: number; } export interface ILeagueScoringPresetsPresenter { present(presets: LeagueScoringPresetDTO[]): LeagueScoringPresetsViewModel; }