obsidian-typings 5.23.0 → 6.0.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 +12 -20
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -1,26 +1,18 @@
|
|
|
1
|
-
|
|
1
|
+
<center>
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
# Obsidian Typings
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
</center>
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
<div align="center">
|
|
8
|
+
<a href="https://obsidian.md/changelog/2026-03-23-desktop-v1.12.7/"><img src="https://img.shields.io/badge/Obsidian_version-1.12.7_public-blue?logo=obsidian" alt="Obsidian version: 1.12.7 public"></a>
|
|
9
|
+
<a href="https://github.com/obsidian-typings/obsidian-typings/tree/release/obsidian-public/1.12.7"><img src="https://img.shields.io/badge/Git_branch-release/obsidian--public/1.12.7-red?logo=git" alt="Git branch: release/obsidian-public/1.12.7"></a>
|
|
10
|
+
</div>
|
|
8
11
|
|
|
9
|
-
|
|
10
|
-
npm install obsidian-typings
|
|
11
|
-
```
|
|
12
|
+
This branch contains the typings for Obsidian version [`1.12.7 public`](https://obsidian.md/changelog/2026-03-23-desktop-v1.12.7/).
|
|
12
13
|
|
|
13
|
-
|
|
14
|
+
> [!WARNING]
|
|
15
|
+
>
|
|
16
|
+
> If you are making a PR to this branch, please make sure to verify that all your changes are applicable to this version.
|
|
14
17
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
```bash
|
|
18
|
-
# Always latest public
|
|
19
|
-
npm install @obsidian-typings/obsidian-public-latest
|
|
20
|
-
|
|
21
|
-
# Specific Obsidian version
|
|
22
|
-
npm install @obsidian-typings/obsidian-public-1.12.7
|
|
23
|
-
|
|
24
|
-
# Catalyst (early access)
|
|
25
|
-
npm install @obsidian-typings/obsidian-catalyst-latest
|
|
26
|
-
```
|
|
18
|
+
[See full docs](https://github.com/obsidian-typings/obsidian-typings/blob/main/README.md)
|
package/package.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "obsidian-typings",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "TypeScript type definitions for Obsidian's internal/unofficial APIs. Wrapper for @obsidian-typings/obsidian-public-latest.",
|
|
5
|
+
"license": "MIT",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"main": "",
|
|
7
8
|
"types": "./types.d.cts",
|
|
8
9
|
"exports": {
|
|
9
10
|
".": {
|
|
10
|
-
"
|
|
11
|
-
"
|
|
11
|
+
"import": { "types": "./types.d.mts" },
|
|
12
|
+
"require": { "types": "./types.d.cts" }
|
|
12
13
|
},
|
|
13
14
|
"./implementations": {
|
|
14
|
-
"
|
|
15
|
-
"
|
|
15
|
+
"import": { "default": "./implementations.mjs", "types": "./implementations.d.mts" },
|
|
16
|
+
"require": { "default": "./implementations.cjs", "types": "./implementations.d.cts" }
|
|
16
17
|
}
|
|
17
18
|
},
|
|
18
19
|
"dependencies": {
|
|
19
|
-
"@obsidian-typings/obsidian-public-latest": "^
|
|
20
|
-
}
|
|
21
|
-
"license": "MIT"
|
|
20
|
+
"@obsidian-typings/obsidian-public-latest": "^6.0.0"
|
|
21
|
+
}
|
|
22
22
|
}
|