UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

6 lines (4 loc) 230 B
import { z } from 'zod'; import { checkpointSchema, checkpointTypeSchema } from './Checkpoint.schema'; export type CheckpointType = z.infer<typeof checkpointTypeSchema>; export type Checkpoint = z.infer<typeof checkpointSchema>;