UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

15 lines (13 loc) 552 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>;