Finish making the intellisense work properly

This commit is contained in:
Eldritch-Oliver 2025-10-05 13:31:31 -06:00
parent 0917f28fcb
commit 98b429f941
3 changed files with 30 additions and 8 deletions

14
augments.d.ts vendored Normal file
View file

@ -0,0 +1,14 @@
declare global {
class Hooks extends foundry.helpers.Hooks {};
const fromUuid = foundry.utils.fromUuid;
}
interface Actor {
/** The system-specific data */
system: any;
};
interface Item {
/** The system-specific data */
system: any;
};