@illandril/foundryvtt-types
Version:
Type definitions for the Foundry VTT client, used by Illandril's modules
21 lines (18 loc) • 469 B
TypeScript
declare global {
namespace foundry {
namespace applications {
namespace ui {
class Hotbar extends foundry.applications.api.ApplicationV2 {
get page(): number;
get macros(): Macro[];
get locked(): boolean;
collapse(): Promise<boolean>;
expand(): Promise<boolean>;
changePage(page: number): void;
cyclePage(direction: 1 | -1): void;
}
}
}
}
}
export type {};