UNPKG

dungeon-sdk-drikkx

Version:

Shared types and entities for the Dungeon game

12 lines 411 B
import { CombatActionType } from '../types/combat.types'; import { DungeonWaveEntity } from './dungeon-wave.entity'; export declare class CombatActionEntity { id: number; waveId: number; wave: DungeonWaveEntity; type: CombatActionType; data: Record<string, any>; createdAt: Date; constructor(partial: Partial<CombatActionEntity>); } //# sourceMappingURL=combat-action.entity.d.ts.map