@league-of-foundry-developers/foundry-vtt-types 13.346.0-beta.20250913175943 → 13.346.0-beta.20250922171059

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package.json",
3
3
  "name": "@league-of-foundry-developers/foundry-vtt-types",
4
- "version": "13.346.0-beta.20250913175943",
4
+ "version": "13.346.0-beta.20250922171059",
5
5
  "description": "TypeScript type definitions for Foundry VTT",
6
6
  "type": "module",
7
7
  "types": "./src/index.d.mts",
@@ -3271,7 +3271,7 @@ declare global {
3271
3271
 
3272
3272
  namespace Font {
3273
3273
  interface Definition extends FontFaceDescriptors {
3274
- url: string[];
3274
+ urls: string[];
3275
3275
  }
3276
3276
 
3277
3277
  interface FamilyDefinition {
@@ -20,7 +20,7 @@ declare class CompendiumCollection<
20
20
  constructor(metadata: CompendiumCollection.ConstructorMetadata<Type>);
21
21
 
22
22
  /** The compendium metadata which defines the compendium content and location */
23
- metadata: CompendiumCollection.Metadata;
23
+ metadata: CompendiumCollection.Metadata<Type>;
24
24
 
25
25
  /** A subsidiary collection which contains the more minimal index of the pack */
26
26
  index: IndexTypeForMetadata<Type>;