Files
gridpilot.gg/packages/racing/domain/value-objects/ParticipantRef.ts
2025-12-04 23:31:55 +01:00

6 lines
136 B
TypeScript

import type { ChampionshipType } from './ChampionshipType';
export interface ParticipantRef {
type: ChampionshipType;
id: string;
}