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