UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

13 lines (10 loc) 378 B
import { KART_FINAL_STATE } from '../../../constants'; import { ObjectValues } from '../../utils'; import { ScreenCurrentTotal } from './ScreenViewBaseConfig'; export type KartFinalState = ObjectValues<typeof KART_FINAL_STATE>; export type ScreenFinishViewInput = { kartNumber?: number; kartPosition: ScreenCurrentTotal; coins: number; finalState?: KartFinalState; };