UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

10 lines (9 loc) 342 B
import { z } from 'zod'; export declare const steeringWheelActionCommandSchema: z.ZodEnum<{ readonly TURN_LED_ON: "TurnLedOn"; readonly TURN_LED_OFF: "TurnLedOff"; }>; export declare const steeringWheelModuleStatusSchema: z.ZodObject<{ isLeftButtonPressed: z.ZodBoolean; isRightButtonPressed: z.ZodBoolean; }, z.core.$strip>;