/** * Domain Entity: RaceRegistration * * Extracted from racing-application registrations module so that * registration-related types live in the racing-domain package. */ export interface RaceRegistration { raceId: string; driverId: string; registeredAt: Date; }