@ox-content/napi 2.54.0 → 2.55.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 +9 -0
  2. 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.
@@ -283,6 +285,7 @@ export interface JsDocMember {
283
285
  static?: boolean
284
286
  private?: boolean
285
287
  tags?: Record<string, string>
288
+ implementationOf?: Array<string>
286
289
  line: number
287
290
  endLine: number
288
291
  }
@@ -300,6 +303,7 @@ export interface JsDocParam {
300
303
  export interface JsDocReturn {
301
304
  type: string
302
305
  description: string
306
+ members?: Array<JsDocMember>
303
307
  }
304
308
 
305
309
  /** Diagnostic for an entry point export during docs extraction. */
@@ -326,6 +330,8 @@ export interface JsDocsMarkdownEntry {
326
330
  line: number
327
331
  endLine: number
328
332
  signature?: string
333
+ extends?: Array<string>
334
+ implements?: Array<string>
329
335
  /**
330
336
  * Whether a function declaration carries an implementation body. Optional so
331
337
  * callers that build entries by hand need not set it; defaults to `false`.
@@ -913,8 +919,11 @@ export interface JsSourceDocItem {
913
919
  endLine: number
914
920
  exported: boolean
915
921
  signature?: string
922
+ extends?: Array<string>
923
+ implements?: Array<string>
916
924
  params: Array<JsSourceDocParam>
917
925
  returnType?: string
926
+ returnMembers?: Array<JsSourceDocItem>
918
927
  members?: Array<JsSourceDocItem>
919
928
  tags: Array<JsSourceDocTag>
920
929
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ox-content/napi",
3
- "version": "2.54.0",
3
+ "version": "2.55.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.54.0",
49
- "@ox-content/binding-darwin-arm64": "2.54.0",
50
- "@ox-content/binding-linux-x64-gnu": "2.54.0",
51
- "@ox-content/binding-linux-arm64-gnu": "2.54.0",
52
- "@ox-content/binding-win32-x64-msvc": "2.54.0"
48
+ "@ox-content/binding-darwin-x64": "2.55.0",
49
+ "@ox-content/binding-darwin-arm64": "2.55.0",
50
+ "@ox-content/binding-linux-x64-gnu": "2.55.0",
51
+ "@ox-content/binding-linux-arm64-gnu": "2.55.0",
52
+ "@ox-content/binding-win32-x64-msvc": "2.55.0"
53
53
  }
54
54
  }