Add the jsconfig that I forgot to include

This commit is contained in:
Eldritch-Oliver 2025-10-16 23:52:02 -06:00
parent 643b2e0c88
commit d856f7b1c8
2 changed files with 34 additions and 0 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;
};