@league-of-foundry-developers/foundry-vtt-types 13.346.0-beta.20251004213306 → 13.346.0-beta.20251006192305
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.20251006192305",
|
5
5
|
"description": "TypeScript type definitions for Foundry VTT",
|
6
6
|
"type": "module",
|
7
7
|
"types": "./src/index.d.mts",
|
@@ -1039,6 +1039,15 @@ declare module "@pixi/events" {
|
|
1039
1039
|
* @see {@link https://developer.mozilla.org/docs/Web/API/PointerEvent/azimuthAngle}
|
1040
1040
|
*/
|
1041
1041
|
azimuthAngle: number;
|
1042
|
+
|
1043
|
+
/**
|
1044
|
+
* The persistentDeviceId read-only property of the PointerEvent interface is a unique identifier
|
1045
|
+
* for the pointing device generating the PointerEvent. This provides a secure, reliable way to
|
1046
|
+
* identify multiple pointing devices (such as pens) interacting with the screen simultaneously.
|
1047
|
+
*
|
1048
|
+
* @see {@link https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/persistentDeviceId}
|
1049
|
+
*/
|
1050
|
+
persistentDeviceId: number;
|
1042
1051
|
}
|
1043
1052
|
}
|
1044
1053
|
|