@ox-content/napi 2.31.0 → 2.33.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/index.d.ts +4 -0
- package/package.json +6 -6
package/index.d.ts
CHANGED
|
@@ -326,6 +326,8 @@ export interface JsDocsMarkdownEntry {
|
|
|
326
326
|
/** Extracted docs for one source file used by generated API Markdown. */
|
|
327
327
|
export interface JsDocsMarkdownModule {
|
|
328
328
|
file: string
|
|
329
|
+
/** Module-level description from the entry file's `@module` / leading JSDoc. */
|
|
330
|
+
description?: string
|
|
329
331
|
entries: Array<JsDocsMarkdownEntry>
|
|
330
332
|
}
|
|
331
333
|
|
|
@@ -412,6 +414,8 @@ export interface JsEntrypointDocsModule {
|
|
|
412
414
|
name: string
|
|
413
415
|
file: string
|
|
414
416
|
sourcePath: string
|
|
417
|
+
/** Module-level description from the entry file's `@module` / leading JSDoc. */
|
|
418
|
+
description: string
|
|
415
419
|
entries: Array<JsDocEntry>
|
|
416
420
|
exports: Array<JsPublicExport>
|
|
417
421
|
diagnostics: Array<JsDocsDiagnostic>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ox-content/napi",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.33.0",
|
|
4
4
|
"description": "Node.js bindings for Ox Content - High-performance Markdown parser",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"markdown",
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
]
|
|
46
46
|
},
|
|
47
47
|
"optionalDependencies": {
|
|
48
|
-
"@ox-content/binding-darwin-x64": "2.
|
|
49
|
-
"@ox-content/binding-darwin-arm64": "2.
|
|
50
|
-
"@ox-content/binding-linux-x64-gnu": "2.
|
|
51
|
-
"@ox-content/binding-linux-arm64-gnu": "2.
|
|
52
|
-
"@ox-content/binding-win32-x64-msvc": "2.
|
|
48
|
+
"@ox-content/binding-darwin-x64": "2.33.0",
|
|
49
|
+
"@ox-content/binding-darwin-arm64": "2.33.0",
|
|
50
|
+
"@ox-content/binding-linux-x64-gnu": "2.33.0",
|
|
51
|
+
"@ox-content/binding-linux-arm64-gnu": "2.33.0",
|
|
52
|
+
"@ox-content/binding-win32-x64-msvc": "2.33.0"
|
|
53
53
|
}
|
|
54
54
|
}
|