UNPKG

@illandril/foundryvtt-types

Version:

Type definitions for the Foundry VTT client, used by Illandril's modules

20 lines (17 loc) 451 B
declare global { namespace foundry { namespace documents { type BaseCombatFields = foundry.abstract.DocumentFields & { active: boolean; round: number; turn: number; }; class BaseCombat extends foundry.abstract.Document { get active(): BaseCombatFields['active']; get round(): BaseCombatFields['round']; get turn(): BaseCombatFields['turn']; } } } } export type {};