@ox-content/napi 2.14.0 → 2.16.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.
Files changed (2) hide show
  1. package/index.d.ts +21 -0
  2. package/package.json +6 -6
package/index.d.ts CHANGED
@@ -196,6 +196,25 @@ export interface JsDocEntry {
196
196
  line: number
197
197
  endLine: number
198
198
  signature?: string
199
+ members?: Array<JsDocMember>
200
+ }
201
+
202
+ /** Normalized member documentation used by generated API docs. */
203
+ export interface JsDocMember {
204
+ name: string
205
+ kind: string
206
+ description: string
207
+ signature?: string
208
+ type?: string
209
+ params?: Array<JsDocParam>
210
+ returns?: JsDocReturn
211
+ optional?: boolean
212
+ readonly?: boolean
213
+ static?: boolean
214
+ private?: boolean
215
+ tags?: Record<string, string>
216
+ line: number
217
+ endLine: number
199
218
  }
200
219
 
201
220
  /** Normalized parameter documentation used by generated API docs. */
@@ -227,6 +246,7 @@ export interface JsDocsMarkdownEntry {
227
246
  line: number
228
247
  endLine: number
229
248
  signature?: string
249
+ members?: Array<JsDocMember>
230
250
  }
231
251
 
232
252
  /** Extracted docs for one source file used by generated API Markdown. */
@@ -614,6 +634,7 @@ export interface JsSourceDocItem {
614
634
  signature?: string
615
635
  params: Array<JsSourceDocParam>
616
636
  returnType?: string
637
+ members?: Array<JsSourceDocItem>
617
638
  tags: Array<JsSourceDocTag>
618
639
  }
619
640
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ox-content/napi",
3
- "version": "2.14.0",
3
+ "version": "2.16.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.14.0",
49
- "@ox-content/binding-darwin-arm64": "2.14.0",
50
- "@ox-content/binding-linux-x64-gnu": "2.14.0",
51
- "@ox-content/binding-linux-arm64-gnu": "2.14.0",
52
- "@ox-content/binding-win32-x64-msvc": "2.14.0"
48
+ "@ox-content/binding-darwin-x64": "2.16.0",
49
+ "@ox-content/binding-darwin-arm64": "2.16.0",
50
+ "@ox-content/binding-linux-x64-gnu": "2.16.0",
51
+ "@ox-content/binding-linux-arm64-gnu": "2.16.0",
52
+ "@ox-content/binding-win32-x64-msvc": "2.16.0"
53
53
  }
54
54
  }