@league-of-foundry-developers/foundry-vtt-types 13.346.0-beta.20250924172319 → 13.346.0-beta.20250924210719

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.20250924172319",
4
+ "version": "13.346.0-beta.20250924210719",
5
5
  "description": "TypeScript type definitions for Foundry VTT",
6
6
  "type": "module",
7
7
  "types": "./src/index.d.mts",
@@ -261,6 +261,8 @@ declare namespace ClientSettings {
261
261
  ? Setting.Implementation
262
262
  : SettingInitializedType<N, K>;
263
263
 
264
+ type Scope = "world" | "client" | "user";
265
+
264
266
  /**
265
267
  * @internal
266
268
  */
@@ -281,7 +283,7 @@ declare namespace ClientSettings {
281
283
  * The scope the Setting is stored in, either World or Client
282
284
  * @defaultValue `"client"`
283
285
  */
284
- scope: "world" | "client";
286
+ scope: Scope;
285
287
 
286
288
  /** Indicates if this Setting should render in the Config application */
287
289
  config?: boolean | undefined;