UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

14 lines (12 loc) 389 B
import type { FlagStatus } from './flag'; import type { RGBStatus } from './rgb'; import type { ScreenStatus } from './screen'; import type { SpeedStatus } from './speed'; export type KartHardwareState = { speed: SpeedStatus | null; rgb: RGBStatus | null; flag: FlagStatus | null; screen: ScreenStatus | null; isConnectedToServer: boolean; isSteeringWheelPressed: boolean; };