UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

10 lines (7 loc) 212 B
import { z } from 'zod'; import { COLOR_NAME } from './Color.const'; export const colorNameSchema = z.enum(COLOR_NAME); export const colorInfoSchema = z.object({ fastLedId: z.number(), hex: z.string(), });