UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

12 lines (10 loc) 256 B
import type { CheckpointType } from './CheckpointType'; export interface Checkpoint { /** Autogenerated Id */ id: string; /** This is the received from Flag Module */ address: number; name?: string; type: CheckpointType; progress: number; }