@league-of-foundry-developers/foundry-vtt-types 13.346.0-beta.20250812192728 → 13.346.0-beta.20250814013237
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.
|
4
|
+
"version": "13.346.0-beta.20250814013237",
|
5
5
|
"description": "TypeScript type definitions for Foundry VTT",
|
6
6
|
"type": "module",
|
7
7
|
"types": "./src/index.d.mts",
|
@@ -152,7 +152,7 @@
|
|
152
152
|
"eslint-config-prettier": "^10.0.1",
|
153
153
|
"eslint-import-resolver-typescript": "^4.3.2",
|
154
154
|
"eslint-plugin-import-x": "^4.6.1",
|
155
|
-
"eslint-plugin-jsdoc": "^
|
155
|
+
"eslint-plugin-jsdoc": "^54.0.0",
|
156
156
|
"eslint-plugin-tsdoc": "^0.4.0",
|
157
157
|
"globals": "^16.0.0",
|
158
158
|
"husky": "^9.1.4",
|
@@ -12,7 +12,7 @@ declare module "#configuration" {
|
|
12
12
|
/**
|
13
13
|
* A base class for providing Item Sheet behavior using ApplicationV2.
|
14
14
|
*/
|
15
|
-
|
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;
|