@league-of-foundry-developers/foundry-vtt-types 13.346.0-beta.20250708111534 → 13.346.0-beta.20250708122847

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.20250708111534",
4
+ "version": "13.346.0-beta.20250708122847",
5
5
  "description": "TypeScript type definitions for Foundry VTT",
6
6
  "type": "module",
7
7
  "types": "./src/index.d.mts",
@@ -559,7 +559,7 @@ declare namespace DialogV2 {
559
559
  ? never
560
560
  : "close" extends keyof Options
561
561
  ? Options["close"] extends (...args: never) => infer Return
562
- ? Return | null
562
+ ? NullishCoalesce<Return, null>
563
563
  : null
564
564
  : null;
565
565
 
@@ -1077,7 +1077,7 @@ declare namespace Token {
1077
1077
  | "disabled"
1078
1078
  >;
1079
1079
 
1080
- // TODO: (LukeAbby) possible candidate for `-=` key handling
1080
+ // TODO(LukeAbby) possible candidate for `-=` key handling
1081
1081
  interface BlindedStates extends Record<string, boolean> {
1082
1082
  blind: boolean;
1083
1083
  burrow: boolean;