UNPKG

foundryvtt-dnd5e-types

Version:

TypeScript type definitions for the DnD5e system in Foundry VTT

22 lines (18 loc) 373 B
import { ItemSheet } from '../foundry'; /** * The DnD5e ItemSheet5e class */ export declare class ItemSheet5e extends ItemSheet { /** * 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>>; }