@league-of-foundry-developers/foundry-vtt-types 13.346.0-beta.20250728030921 → 13.346.0-beta.20250728051014
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.20250728051014",
|
5
5
|
"description": "TypeScript type definitions for Foundry VTT",
|
6
6
|
"type": "module",
|
7
7
|
"types": "./src/index.d.mts",
|
@@ -246,7 +246,7 @@ declare namespace FormApplication {
|
|
246
246
|
// See {@linkcode HandleEmptyObject} for more information.
|
247
247
|
(<T>() => T extends FormApplication.NoObject ? 1 : 0) extends <T>() => T extends ConcreteObject ? 1 : 0
|
248
248
|
? [object?: ConcreteObject, options?: Partial<Options>]
|
249
|
-
:
|
249
|
+
: undefined extends ConcreteObject
|
250
250
|
? [object?: ConcreteObject, options?: Partial<Options>]
|
251
251
|
: [object: ConcreteObject, options?: Partial<Options>];
|
252
252
|
|