@battle-racing/br-common-lib
Version:
Common library for all Battle Racing Repositorios
13 lines (11 loc) • 482 B
text/typescript
import { z } from 'zod';
import {
gameTrackGameDefaultValuesSchema,
gameTrackKartConfigSchema,
gameTrackKartsConfigSchema,
gameTrackSchema,
} from './GameTrack.schema';
export type GameTrackGameDefaultValues = z.infer<typeof gameTrackGameDefaultValuesSchema>;
export type GameTrackKartsConfig = z.infer<typeof gameTrackKartsConfigSchema>;
export type GameTrackKartConfig = z.infer<typeof gameTrackKartConfigSchema>;
export type GameTrack = z.infer<typeof gameTrackSchema>;