UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

8 lines (7 loc) 540 B
import { z } from 'zod'; import { rgbActionCommandSchema, rgbConfigurationOptionsSchema, rgbModuleStatusSchema, rgbShowEffectOptionsSchema, rgbStatusSchema } from './RGB.schema'; export type RGBStatus = z.infer<typeof rgbStatusSchema>; export type RGBModuleStatus = z.infer<typeof rgbModuleStatusSchema>; export type RGBConfigurationOptions = z.infer<typeof rgbConfigurationOptionsSchema>; export type RGBShowEffectOptions = z.infer<typeof rgbShowEffectOptionsSchema>; export type RGBActionCommand = z.infer<typeof rgbActionCommandSchema>;