foundryvtt-dnd5e-types
Version:
TypeScript type definitions for the DnD5e system in Foundry VTT
22 lines (18 loc) • 360 B
TypeScript
import { Actor } from '../foundry';
/**
* The DnD5e Actor5e class
*/
export declare class Actor5e extends Actor {
/**
* Prepare base data for the actor
*/
prepareBaseData(): void;
/**
* Prepare derived data for the actor
*/
prepareDerivedData(): void;
/**
* Get the actor's data
*/
getData(): Promise<Record<string, any>>;
}