Files
gridpilot.gg/testing/factories/racing/DriverRefFactory.ts
2025-12-15 18:34:20 +01:00

7 lines
286 B
TypeScript

import type { ParticipantRef } from '@gridpilot/racing/domain/types/ParticipantRef';
import type { ChampionshipType } from '@gridpilot/racing/domain/types/ChampionshipType';
export const makeDriverRef = (id: string): ParticipantRef => ({
type: 'driver' as ChampionshipType,
id,
});