UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

5 lines (4 loc) 230 B
import { z } from 'zod'; import { GameTurnQueueItemSchema, GameTurnSchema } from './GameTurn.schema'; export type GameTurn = z.infer<typeof GameTurnSchema>; export type GameTurnQueueItem = z.infer<typeof GameTurnQueueItemSchema>;