UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

7 lines (4 loc) 256 B
import { z } from 'zod'; import { soundActionCommandSchema, playSoundOptionsSchema } from './Sound.schema'; export type SoundActionCommand = z.infer<typeof soundActionCommandSchema>; export type PlaySoundOptions = z.infer<typeof playSoundOptionsSchema>;