@ox-content/napi 2.59.0 → 2.61.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 +9 -0
- package/package.json +6 -6
package/index.d.ts
CHANGED
|
@@ -281,6 +281,7 @@ export interface JsDocMember {
|
|
|
281
281
|
params?: Array<JsDocParam>
|
|
282
282
|
typeParameters?: Array<JsTypeParam>
|
|
283
283
|
returns?: JsDocReturn
|
|
284
|
+
members?: Array<JsDocMember>
|
|
284
285
|
optional?: boolean
|
|
285
286
|
readonly?: boolean
|
|
286
287
|
static?: boolean
|
|
@@ -452,6 +453,14 @@ export interface JsDocsOutputOptions {
|
|
|
452
453
|
generatedAt?: string
|
|
453
454
|
basePath?: string
|
|
454
455
|
pathStrategy?: 'flat' | 'typedoc'
|
|
456
|
+
/** TypeDoc-style group order for generated nav groups. */
|
|
457
|
+
groupOrder?: Array<string>
|
|
458
|
+
/** TypeDoc-style sort strategies for generated nav leaf entries. */
|
|
459
|
+
sort?: Array<string>
|
|
460
|
+
/** TypeDoc-style `sortEntryPoints`: when `false`, preserve module order. */
|
|
461
|
+
sortEntryPoints?: boolean
|
|
462
|
+
/** TypeDoc-style kind ranking for generated nav groups. */
|
|
463
|
+
kindSortOrder?: Array<string>
|
|
455
464
|
}
|
|
456
465
|
|
|
457
466
|
/** Docs-as-tests extraction options. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ox-content/napi",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.61.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.61.0",
|
|
49
|
+
"@ox-content/binding-darwin-arm64": "2.61.0",
|
|
50
|
+
"@ox-content/binding-linux-x64-gnu": "2.61.0",
|
|
51
|
+
"@ox-content/binding-linux-arm64-gnu": "2.61.0",
|
|
52
|
+
"@ox-content/binding-win32-x64-msvc": "2.61.0"
|
|
53
53
|
}
|
|
54
54
|
}
|