UNPKG

dungeon-sdk-drikkx

Version:

Shared types and entities for the Dungeon game

15 lines 444 B
import { CharacterEntity } from './character.entity'; import { KeyEntity } from './key.entity'; import { TeamSlots } from '../frontend'; export declare class UserEntity { id: number; walletAddress: string; nonce: string; team: TeamSlots; characters: CharacterEntity[]; keys: KeyEntity[]; createdAt: Date; updatedAt: Date; constructor(partial: Partial<UserEntity>); } //# sourceMappingURL=user.entity.d.ts.map