@battle-racing/br-common-lib
Version:
Common library for all Battle Racing Repositorios
13 lines (11 loc) • 510 B
text/typescript
import type { Checkpoint } from '../../checkpoint';
export type SocketRegisterKartCheckpointInput = {
/** The macAddress is necessary to avoid extra process in the backend to find the macAddress */
macAddress: string;
checkpointAddress: Checkpoint['address'];
checkpointType: Checkpoint['type'];
/** Just Request the power-up when there is no a power-up already assigned */
shouldRequestPowerUp: boolean;
/** The real time when the event was generated on RPI */
originTimestampISO: string;
};