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