obsidian-typings 5.19.0 → 5.20.0
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
|
@@ -13,13 +13,14 @@ index 171a26d..0c7e6c3 100644
|
|
|
13
13
|
+ instanceOf<T>(type: { new(...data: any[]): T }): this is T;
|
|
14
14
|
}
|
|
15
15
|
diff --git a/node_modules/@pixi/events/lib/FederatedPointerEvent.d.ts b/node_modules/@pixi/events/lib/FederatedPointerEvent.d.ts
|
|
16
|
-
index 89c2d5c..
|
|
16
|
+
index 89c2d5c..b518b9a 100644
|
|
17
17
|
--- a/node_modules/@pixi/events/lib/FederatedPointerEvent.d.ts
|
|
18
18
|
+++ b/node_modules/@pixi/events/lib/FederatedPointerEvent.d.ts
|
|
19
|
-
@@ -62,4 +62,
|
|
19
|
+
@@ -62,4 +62,7 @@ export declare class FederatedPointerEvent extends FederatedMouseEvent implement
|
|
20
20
|
detail: number;
|
|
21
21
|
getCoalescedEvents(): PointerEvent[];
|
|
22
22
|
getPredictedEvents(): PointerEvent[];
|
|
23
23
|
+ altitudeAngle: number;
|
|
24
24
|
+ azimuthAngle: number;
|
|
25
|
+
+ persistentDeviceId: number;
|
|
25
26
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
diff --git a/node_modules/@types/css-font-loading-module/index.d.ts b/node_modules/@types/css-font-loading-module/index.d.ts
|
|
2
|
-
index 728dd9c..
|
|
2
|
+
index 728dd9c..be3ae85 100644
|
|
3
3
|
--- a/node_modules/@types/css-font-loading-module/index.d.ts
|
|
4
4
|
+++ b/node_modules/@types/css-font-loading-module/index.d.ts
|
|
5
|
-
@@ -85,
|
|
5
|
+
@@ -85,18 +85,13 @@ declare global {
|
|
6
6
|
|
|
7
7
|
var FontFace: {
|
|
8
8
|
prototype: FontFace;
|
|
@@ -11,3 +11,15 @@ index 728dd9c..e9cd295 100644
|
|
|
11
11
|
};
|
|
12
12
|
|
|
13
13
|
interface FontFaceSetLoadEvent extends Event {
|
|
14
|
+
- readonly fontfaces: readonly FontFace[];
|
|
15
|
+
+ readonly fontfaces: ReadonlyArray<FontFace>;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
- var FontFaceSetLoadEvent: {
|
|
19
|
+
- prototype: FontFaceSetLoadEvent;
|
|
20
|
+
- new(type: string, eventInitDict?: FontFaceSetLoadEventInit): FontFaceSetLoadEvent;
|
|
21
|
+
- };
|
|
22
|
+
-
|
|
23
|
+
interface Document {
|
|
24
|
+
fonts: FontFaceSet;
|
|
25
|
+
}
|