@battle-racing/br-common-lib
Version:
Common library for all Battle Racing Repositorios
7 lines (5 loc) • 366 B
text/typescript
import { z } from 'zod';
import { lightsEffectSchema, showLightsColorParamsSchema, showLightsEffectParamsSchema } from './Lights.schema';
export type LightsEffect = z.infer<typeof lightsEffectSchema>;
export type ShowLightsColorParams = z.infer<typeof showLightsColorParamsSchema>;
export type ShowLightsEffectParams = z.infer<typeof showLightsEffectParamsSchema>;