foundryvtt-dnd5e-types
Version:
TypeScript type definitions for the DnD5e system in Foundry VTT
20 lines (17 loc) • 360 B
TypeScript
/**
* The DnD5e Tooltips5e class
*/
export declare class Tooltips5e {
/**
* Initialize the tooltips
*/
static initialize(): void;
/**
* Activate tooltips for a specific element
*/
static activate(element: HTMLElement): void;
/**
* Deactivate tooltips for a specific element
*/
static deactivate(element: HTMLElement): void;
}