@battle-racing/br-common-lib
Version:
Common library for all Battle Racing Repositorios
8 lines (6 loc) • 342 B
text/typescript
import { z } from 'zod';
import { kartGameSchema, kartSchema, kartShieldSchema, kartStatusSchema } from './Kart.schema';
export type KartStatus = z.infer<typeof kartStatusSchema>;
export type KartShield = z.infer<typeof kartShieldSchema>;
export type KartGame = z.infer<typeof kartGameSchema>;
export type Kart = z.infer<typeof kartSchema>;