@ox-content/napi 2.45.0 → 2.47.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 +10 -0
- package/package.json +6 -6
package/index.d.ts
CHANGED
|
@@ -372,6 +372,11 @@ export interface JsDocsMarkdownOptions {
|
|
|
372
372
|
typeDeclarationFormat?: 'none' | 'list' | 'table'
|
|
373
373
|
/** Emit the stats summary line on index pages (default: true). */
|
|
374
374
|
renderStats?: boolean
|
|
375
|
+
/**
|
|
376
|
+
* TypeDoc-style group order for module index sections and nav groups. Unlisted
|
|
377
|
+
* groups are sorted alphabetically at `*` (or at the end when `*` is absent).
|
|
378
|
+
*/
|
|
379
|
+
groupOrder?: Array<string>
|
|
375
380
|
}
|
|
376
381
|
|
|
377
382
|
/** Ordered JSDoc tag used by generated API Markdown. */
|
|
@@ -391,6 +396,11 @@ export interface JsDocsNavItem {
|
|
|
391
396
|
export interface JsDocsNavOptions {
|
|
392
397
|
basePath?: string
|
|
393
398
|
pathStrategy?: 'flat' | 'typedoc'
|
|
399
|
+
/**
|
|
400
|
+
* TypeDoc-style group order for nav groups (matches `generateDocsMarkdown`'s
|
|
401
|
+
* `groupOrder` so the sidebar and page order stay in sync).
|
|
402
|
+
*/
|
|
403
|
+
groupOrder?: Array<string>
|
|
394
404
|
}
|
|
395
405
|
|
|
396
406
|
/** Options for writing generated API documentation files. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ox-content/napi",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.47.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.47.0",
|
|
49
|
+
"@ox-content/binding-darwin-arm64": "2.47.0",
|
|
50
|
+
"@ox-content/binding-linux-x64-gnu": "2.47.0",
|
|
51
|
+
"@ox-content/binding-linux-arm64-gnu": "2.47.0",
|
|
52
|
+
"@ox-content/binding-win32-x64-msvc": "2.47.0"
|
|
53
53
|
}
|
|
54
54
|
}
|