UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

10 lines (7 loc) 204 B
import type { ObjectValues } from '../utils'; const POWER_UP_TYPE = { Damage: 'Damage', Shield: 'Shield', Speed: 'Speed', } as const; export type PowerUpType = ObjectValues<typeof POWER_UP_TYPE>;