fvtt-types
Version:
TypeScript type definitions for Foundry VTT
28 lines (17 loc) • 801 B
text/typescript
/* eslint-disable @typescript-eslint/no-unused-vars */
// 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. The names Foundry has chosen
// also overlaps with other existing names, such as SettingConfig vs. ClientSetting.SettingConfig
// TODO: Stubs
export {};
type PackageAuthorData = unknown;
type PackageCompendiumData = unknown;
type PackageLanguageData = unknown;
type RelatedPackageData = unknown;
type PackageCompatibilityData = unknown;
type PackageRelationshipsData = unknown;
type PackageManifestData = unknown;
type DocumentTypesConfiguration = unknown;