UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

6 lines (4 loc) 241 B
import { z } from 'zod'; import { checkpointEventSchema, kartTrackingSchema } from './KartTracking.schema'; export type CheckpointEvent = z.infer<typeof checkpointEventSchema>; export type KartTracking = z.infer<typeof kartTrackingSchema>;