Add scripts and infra required to get Foundry intellisense working

This commit is contained in:
Eldritch-Oliver 2025-09-28 00:45:48 -06:00
parent 2cb4268400
commit e84e921bec
5 changed files with 79 additions and 2 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;
};