@league-of-foundry-developers/foundry-vtt-types 13.346.0-beta.20250722114726 → 13.346.0-beta.20250723121215

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.20250722114726",
4
+ "version": "13.346.0-beta.20250723121215",
5
5
  "description": "TypeScript type definitions for Foundry VTT",
6
6
  "type": "module",
7
7
  "types": "./src/index.d.mts",
@@ -134,13 +134,14 @@ declare class HandlebarsApplication {
134
134
  */
135
135
  declare function HandlebarsApplicationMixin<BaseClass extends HandlebarsApplicationMixin.BaseClass>(
136
136
  BaseApplication: BaseClass,
137
- ): Mixin<typeof HandlebarsApplication, BaseClass>;
137
+ ): HandlebarsApplicationMixin.Mix<BaseClass>;
138
138
 
139
139
  declare namespace HandlebarsApplicationMixin {
140
140
  interface AnyMixedConstructor extends ReturnType<typeof HandlebarsApplicationMixin<BaseClass>> {}
141
141
  interface AnyMixed extends FixedInstanceType<AnyMixedConstructor> {}
142
142
 
143
143
  type BaseClass = ApplicationV2.Internal.Constructor;
144
+ type Mix<BaseClass extends HandlebarsApplicationMixin.BaseClass> = Mixin<typeof HandlebarsApplication, BaseClass>;
144
145
 
145
146
  interface PartState {
146
147
  scrollPositions: Array<[el1: HTMLElement, scrollTop: number, scrollLeft: number]>;