obsidian-typings 2.44.2 → 2.44.3
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "obsidian-typings",
|
|
3
|
-
"version": "2.44.
|
|
3
|
+
"version": "2.44.3",
|
|
4
4
|
"description": "Extended type definitions for the Obsidian API (https://obsidian.md)",
|
|
5
5
|
"main": "",
|
|
6
6
|
"module": "",
|
|
@@ -53,13 +53,14 @@
|
|
|
53
53
|
"url": "https://github.com/Fevol/obsidian-typings/issues"
|
|
54
54
|
},
|
|
55
55
|
"homepage": "https://github.com/Fevol/obsidian-typings#readme",
|
|
56
|
-
"
|
|
56
|
+
"dependencies": {
|
|
57
57
|
"@capacitor/core": "^6.1.2",
|
|
58
58
|
"@codemirror/search": "^6.5.6",
|
|
59
59
|
"@codemirror/state": "^6.4.1",
|
|
60
60
|
"@pixi/color": "7.2.4",
|
|
61
61
|
"@pixi/events": "7.2.4",
|
|
62
62
|
"@pixi/settings": "7.2.4",
|
|
63
|
+
"@types/codemirror": "^5.60.15",
|
|
63
64
|
"@types/css-font-loading-module": "^0.0.14",
|
|
64
65
|
"@types/node": ">=14.0.0",
|
|
65
66
|
"@types/prismjs": "^1.26.5",
|
|
@@ -78,7 +79,6 @@
|
|
|
78
79
|
"devDependencies": {
|
|
79
80
|
"@microsoft/api-extractor": "^7.52.4",
|
|
80
81
|
"@tsconfig/strictest": "^2.0.5",
|
|
81
|
-
"@types/codemirror": "^5.60.15",
|
|
82
82
|
"@types/node": "^18.17.0 || >=20.1.0",
|
|
83
83
|
"builtin-modules": "^5.0.0",
|
|
84
84
|
"cspell": "^8.19.0",
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
diff --git a/node_modules/@antfu/utils/dist/index.d.mts b/node_modules/@antfu/utils/dist/index.d.mts
|
|
2
|
+
index 693e405..a37e208 100644
|
|
3
|
+
--- a/node_modules/@antfu/utils/dist/index.d.mts
|
|
4
|
+
+++ b/node_modules/@antfu/utils/dist/index.d.mts
|
|
5
|
+
@@ -354,9 +354,6 @@ declare class PInstance<T = any> extends Promise<Awaited<T>[]> {
|
|
6
|
+
forEach(fn: (value: Awaited<T>, index: number) => void): Promise<void>;
|
|
7
|
+
reduce<U>(fn: (previousValue: U, currentValue: Awaited<T>, currentIndex: number, array: Awaited<T>[]) => U, initialValue: U): Promise<U>;
|
|
8
|
+
clear(): void;
|
|
9
|
+
- then(fn?: () => PromiseLike<any>): Promise<any>;
|
|
10
|
+
- catch(fn?: (err: unknown) => PromiseLike<any>): Promise<any>;
|
|
11
|
+
- finally(fn?: () => void): Promise<Awaited<T>[]>;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Utility for managing multiple promises.
|