Files
gridpilot.gg/testing/factories/racing/DriverRefFactory.ts
2025-12-16 11:52:26 +01:00

7 lines
276 B
TypeScript

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