6 lines
208 B
TypeScript
6 lines
208 B
TypeScript
export interface ImageServicePort {
|
|
getDriverAvatar(driverId: string): string;
|
|
getTeamLogo(teamId: string): string;
|
|
getLeagueCover(leagueId: string): string;
|
|
getLeagueLogo(leagueId: string): string;
|
|
} |