obsidian-typings 4.70.0 → 4.72.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/README.md +1 -1
- package/dist/obsidian-typings.api.json +1 -1
- package/package.json +2 -2
- package/patches/electron+39.2.6.patch +16 -0
package/README.md
CHANGED
|
@@ -70,7 +70,7 @@ To make it easier to adapt to these differences, this package provides typings f
|
|
|
70
70
|
Typings for each `Obsidian` version can be found in their own git branches: namely `release/obsidian-public/*` and `release/obsidian-catalyst/*`:
|
|
71
71
|
|
|
72
72
|
- Latest `public` release: [`release/obsidian-public/1.10.6`](https://github.com/Fevol/obsidian-typings/tree/release/obsidian-public/1.10.6)
|
|
73
|
-
- Latest `catalyst` release: [`release/obsidian-catalyst/1.
|
|
73
|
+
- Latest `catalyst` release: [`release/obsidian-catalyst/1.11.0`](https://github.com/Fevol/obsidian-typings/tree/release/obsidian-catalyst/1.11.0)
|
|
74
74
|
|
|
75
75
|
Older versions of the package are available, but support for them is limited.
|
|
76
76
|
In most cases, we recommend to always use the latest release.
|
|
@@ -48088,7 +48088,7 @@
|
|
|
48088
48088
|
{
|
|
48089
48089
|
"kind": "Reference",
|
|
48090
48090
|
"text": "FSWatcher",
|
|
48091
|
-
"canonicalReference": "!\"\\\"fs\\\"\".FSWatcher:interface"
|
|
48091
|
+
"canonicalReference": "!\"\\\"node:fs\\\"\".FSWatcher:interface"
|
|
48092
48092
|
},
|
|
48093
48093
|
{
|
|
48094
48094
|
"kind": "Content",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "obsidian-typings",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.72.0",
|
|
4
4
|
"description": "Extended type definitions for the Obsidian API (https://obsidian.md)",
|
|
5
5
|
"main": "",
|
|
6
6
|
"module": "",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"@types/prismjs": "1.26.5",
|
|
72
72
|
"@types/turndown": "5.0.5",
|
|
73
73
|
"colord": "2.9.3",
|
|
74
|
-
"electron": "
|
|
74
|
+
"electron": "39.2.6",
|
|
75
75
|
"i18next": "25.2.1",
|
|
76
76
|
"mermaid": "11.4.1",
|
|
77
77
|
"obsidian": "1.10.3",
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
diff --git a/node_modules/electron/electron.d.ts b/node_modules/electron/electron.d.ts
|
|
2
|
+
index b5f2fe2..bd34f93 100644
|
|
3
|
+
--- a/node_modules/electron/electron.d.ts
|
|
4
|
+
+++ b/node_modules/electron/electron.d.ts
|
|
5
|
+
@@ -25562,9 +25562,10 @@ interface Document {
|
|
6
|
+
createElement(tagName: 'webview'): Electron.WebviewTag;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
+type _ElectronProcessBase = import('node:events').InternalEventEmitter<import('node:process').ProcessEventMap>;
|
|
10
|
+
|
|
11
|
+
declare namespace NodeJS {
|
|
12
|
+
- interface Process extends NodeJS.EventEmitter {
|
|
13
|
+
+ interface Process extends _ElectronProcessBase {
|
|
14
|
+
|
|
15
|
+
// Docs: https://electronjs.org/docs/api/process
|
|
16
|
+
|