UNPKG

fvtt-types

Version:
18 lines (12 loc) 664 B
/* eslint-disable @typescript-eslint/no-unused-vars */ import type CompendiumArt from "./media/compendium-art.d.mts"; export {}; // After seeing that none of these types add anything or are even exported a // very reasonable question may be: Why on earth does this file exist? // // Well this is the file in which Foundry defines these types. We don't house // them here because it has poor discoverability. It's also just nice to // have as reference to keep us synced with the latest version of Foundry. type CompendiumArtInfo = CompendiumArt.Info; type CompendiumArtMapping = CompendiumArt.Mapping; type CompendiumArtDescriptor = CompendiumArt.Descriptor;