5 lines
176 B
TypeScript
5 lines
176 B
TypeScript
import type { LeagueSchedulePreviewDTO } from '../dto/LeagueScheduleDTO';
|
|
|
|
export interface ILeagueSchedulePreviewPresenter {
|
|
present(data: LeagueSchedulePreviewDTO): void;
|
|
} |