foundryvtt-dnd5e-types
Version:
TypeScript type definitions for the DnD5e system in Foundry VTT
20 lines (17 loc) • 306 B
TypeScript
/**
* The DnD5e Combat5e class
*/
export declare class Combat5e extends Combat {
/**
* Get the combat's current combatant
*/
getCurrentCombatant(): Combatant5e | null;
/**
* Get the combat's round
*/
getRound(): number;
/**
* Get the combat's turn
*/
getTurn(): number;
}