@league-of-foundry-developers/foundry-vtt-types 13.346.0-beta.20251009163132 → 13.346.0-beta.20251012200238
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.20251012200238",
|
5
5
|
"description": "TypeScript type definitions for Foundry VTT",
|
6
6
|
"type": "module",
|
7
7
|
"types": "./src/index.d.mts",
|
@@ -147,7 +147,7 @@
|
|
147
147
|
"@typescript-eslint/parser": "^8.31.0",
|
148
148
|
"@typescript-eslint/scope-manager": "^8.31.0",
|
149
149
|
"@typescript-eslint/utils": "^8.31.0",
|
150
|
-
"@typescript/native-preview": "^7.0.0-dev.
|
150
|
+
"@typescript/native-preview": "^7.0.0-dev.20251012.1",
|
151
151
|
"eslint": "^9.19.0",
|
152
152
|
"eslint-config-prettier": "^10.0.1",
|
153
153
|
"eslint-import-resolver-typescript": "^4.3.2",
|
@@ -1,4 +1,6 @@
|
|
1
1
|
import type { Brand, Identity } from "#utils";
|
2
|
+
import { Graphics as _Graphics } from "pixi.js";
|
3
|
+
|
2
4
|
import * as _PIXI from "pixi.js";
|
3
5
|
|
4
6
|
// Note(LukeAbby): The `smooth.d.mts` and `smooth.d.mts` files exist to make it DRY to selectively tweak PIXI sub-namespaces.
|
@@ -1052,7 +1054,8 @@ declare module "@pixi/events" {
|
|
1052
1054
|
}
|
1053
1055
|
|
1054
1056
|
declare module "pixi.js" {
|
1055
|
-
export
|
1057
|
+
export interface LegacyGraphics extends _Graphics {}
|
1058
|
+
export class LegacyGraphics extends _Graphics {}
|
1056
1059
|
|
1057
1060
|
export enum BLEND_MODES {
|
1058
1061
|
/**
|