@ox-content/napi 2.54.0 → 2.56.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
|
@@ -260,6 +260,8 @@ export interface JsDocEntry {
|
|
|
260
260
|
line: number
|
|
261
261
|
endLine: number
|
|
262
262
|
signature?: string
|
|
263
|
+
extends?: Array<string>
|
|
264
|
+
implements?: Array<string>
|
|
263
265
|
/**
|
|
264
266
|
* Whether a function declaration carries an implementation body. `false` for
|
|
265
267
|
* overload signatures and ambient declarations.
|
|
@@ -277,12 +279,14 @@ export interface JsDocMember {
|
|
|
277
279
|
signature?: string
|
|
278
280
|
type?: string
|
|
279
281
|
params?: Array<JsDocParam>
|
|
282
|
+
typeParameters?: Array<JsTypeParam>
|
|
280
283
|
returns?: JsDocReturn
|
|
281
284
|
optional?: boolean
|
|
282
285
|
readonly?: boolean
|
|
283
286
|
static?: boolean
|
|
284
287
|
private?: boolean
|
|
285
288
|
tags?: Record<string, string>
|
|
289
|
+
implementationOf?: Array<string>
|
|
286
290
|
line: number
|
|
287
291
|
endLine: number
|
|
288
292
|
}
|
|
@@ -300,6 +304,7 @@ export interface JsDocParam {
|
|
|
300
304
|
export interface JsDocReturn {
|
|
301
305
|
type: string
|
|
302
306
|
description: string
|
|
307
|
+
members?: Array<JsDocMember>
|
|
303
308
|
}
|
|
304
309
|
|
|
305
310
|
/** Diagnostic for an entry point export during docs extraction. */
|
|
@@ -326,6 +331,8 @@ export interface JsDocsMarkdownEntry {
|
|
|
326
331
|
line: number
|
|
327
332
|
endLine: number
|
|
328
333
|
signature?: string
|
|
334
|
+
extends?: Array<string>
|
|
335
|
+
implements?: Array<string>
|
|
329
336
|
/**
|
|
330
337
|
* Whether a function declaration carries an implementation body. Optional so
|
|
331
338
|
* callers that build entries by hand need not set it; defaults to `false`.
|
|
@@ -913,8 +920,11 @@ export interface JsSourceDocItem {
|
|
|
913
920
|
endLine: number
|
|
914
921
|
exported: boolean
|
|
915
922
|
signature?: string
|
|
923
|
+
extends?: Array<string>
|
|
924
|
+
implements?: Array<string>
|
|
916
925
|
params: Array<JsSourceDocParam>
|
|
917
926
|
returnType?: string
|
|
927
|
+
returnMembers?: Array<JsSourceDocItem>
|
|
918
928
|
members?: Array<JsSourceDocItem>
|
|
919
929
|
tags: Array<JsSourceDocTag>
|
|
920
930
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ox-content/napi",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.56.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.56.0",
|
|
49
|
+
"@ox-content/binding-darwin-arm64": "2.56.0",
|
|
50
|
+
"@ox-content/binding-linux-x64-gnu": "2.56.0",
|
|
51
|
+
"@ox-content/binding-linux-arm64-gnu": "2.56.0",
|
|
52
|
+
"@ox-content/binding-win32-x64-msvc": "2.56.0"
|
|
53
53
|
}
|
|
54
54
|
}
|