6 lines
136 B
TypeScript
6 lines
136 B
TypeScript
import type { ChampionshipType } from './ChampionshipType';
|
|
|
|
export interface ParticipantRef {
|
|
type: ChampionshipType;
|
|
id: string;
|
|
} |