UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

11 lines (9 loc) 215 B
import type { UserRole } from '../role/UserRole'; import type { UserOrigin } from './UserOrigin'; export interface User { id: string; username: string; name: string; origin: UserOrigin; role: UserRole; }