@league-of-foundry-developers/foundry-vtt-types 13.346.0-beta.20250812191140 → 13.346.0-beta.20250813163507

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.20250812191140",
4
+ "version": "13.346.0-beta.20250813163507",
5
5
  "description": "TypeScript type definitions for Foundry VTT",
6
6
  "type": "module",
7
7
  "types": "./src/index.d.mts",
@@ -56,7 +56,7 @@
56
56
  },
57
57
  "repository": {
58
58
  "type": "git",
59
- "url": "https://github.com/League-of-Foundry-Developers/foundry-vtt-types"
59
+ "url": "git+https://github.com/League-of-Foundry-Developers/foundry-vtt-types.git"
60
60
  },
61
61
  "contributors": [
62
62
  {
@@ -12,7 +12,7 @@ declare module "#configuration" {
12
12
  /**
13
13
  * A base class for providing Item Sheet behavior using ApplicationV2.
14
14
  */
15
- export default class ItemSheetV2<
15
+ declare class ItemSheetV2<
16
16
  RenderContext extends ItemSheetV2.RenderContext = ItemSheetV2.RenderContext,
17
17
  Configuration extends ItemSheetV2.Configuration = ItemSheetV2.Configuration,
18
18
  RenderOptions extends ItemSheetV2.RenderOptions = ItemSheetV2.RenderOptions,
@@ -46,3 +46,5 @@ declare abstract class AnyItemSheetV2 extends ItemSheetV2<
46
46
  > {
47
47
  constructor(...args: never);
48
48
  }
49
+
50
+ export default ItemSheetV2;