UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

9 lines (8 loc) 244 B
import type { ObjectValues } from '../utils'; declare const POWER_UP_TYPE: { readonly Damage: "Damage"; readonly Shield: "Shield"; readonly Speed: "Speed"; }; export type PowerUpType = ObjectValues<typeof POWER_UP_TYPE>; export {};