@illandril/foundryvtt-types
Version:
Type definitions for the Foundry VTT client, used by Illandril's modules
16 lines (14 loc) • 364 B
TypeScript
declare global {
namespace foundry {
namespace applications {
namespace hud {
class BasePlaceableHUD<ObjectType extends PlaceableObject<foundry.abstract.Document>> extends foundry
.applications.api.ApplicationV2 {
get object(): ObjectType | undefined;
clear(): void;
}
}
}
}
}
export type {};