@ox-content/napi 2.40.0 → 2.42.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 +8 -0
- package/package.json +6 -6
package/index.d.ts
CHANGED
|
@@ -336,6 +336,10 @@ export interface JsDocsMarkdownModule {
|
|
|
336
336
|
* re-exported symbol's canonical page under its defining module.
|
|
337
337
|
*/
|
|
338
338
|
sourcePath?: string
|
|
339
|
+
/** Module-level example blocks from the entry file's `@module` / leading JSDoc. */
|
|
340
|
+
examples?: Array<string>
|
|
341
|
+
/** Module-level custom JSDoc tags. */
|
|
342
|
+
tags?: Array<JsDocsMarkdownTag>
|
|
339
343
|
entries: Array<JsDocsMarkdownEntry>
|
|
340
344
|
}
|
|
341
345
|
|
|
@@ -432,6 +436,10 @@ export interface JsEntrypointDocsModule {
|
|
|
432
436
|
sourcePath: string
|
|
433
437
|
/** Module-level description from the entry file's `@module` / leading JSDoc. */
|
|
434
438
|
description: string
|
|
439
|
+
/** Module-level example blocks from the entry file's `@module` / leading JSDoc. */
|
|
440
|
+
examples: Array<string>
|
|
441
|
+
/** Module-level custom JSDoc tags. */
|
|
442
|
+
tags: Array<JsDocsMarkdownTag>
|
|
435
443
|
entries: Array<JsDocEntry>
|
|
436
444
|
exports: Array<JsPublicExport>
|
|
437
445
|
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.42.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.42.0",
|
|
49
|
+
"@ox-content/binding-darwin-arm64": "2.42.0",
|
|
50
|
+
"@ox-content/binding-linux-x64-gnu": "2.42.0",
|
|
51
|
+
"@ox-content/binding-linux-arm64-gnu": "2.42.0",
|
|
52
|
+
"@ox-content/binding-win32-x64-msvc": "2.42.0"
|
|
53
53
|
}
|
|
54
54
|
}
|