UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

9 lines (6 loc) 384 B
import { z } from 'zod'; import { playerSchema, playerStatsSchema, playerTypeSchema, playerWaiverStatusSchema } from './Player.schema'; export type PlayerType = z.infer<typeof playerTypeSchema>; export type PlayerStats = z.infer<typeof playerStatsSchema>; export type PlayerWaiverStatus = z.infer<typeof playerWaiverStatusSchema>; export type Player = z.infer<typeof playerSchema>;