mdbxmou 0.3.9 → 0.3.10

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/lib/nativemou.js CHANGED
@@ -1,6 +1,5 @@
1
- const os = require('os');
2
-
3
1
  const nativePath = '../build/Release/mdbxmou';
2
+ /** @type {import("./types").MDBX_Native} */
4
3
  const nativeModule = require(nativePath);
5
4
  // Экспортируем объединенный модуль
6
5
  module.exports = nativeModule;
package/lib/types.d.ts CHANGED
@@ -394,9 +394,10 @@ export interface MDBX_Param {
394
394
  };
395
395
  }
396
396
 
397
+ /** Runtime constants exported by the native module. */
397
398
  export declare const MDBX_Param: MDBX_Param;
398
399
 
399
400
  export interface MDBX_Native {
400
401
  MDBX_Env: typeof MDBX_Env;
401
- MDBX_Param: MDBX_Param;
402
+ MDBX_Param: typeof MDBX_Param;
402
403
  }
package/package.json CHANGED
@@ -65,7 +65,7 @@
65
65
  },
66
66
  "gypfile": true,
67
67
  "name": "mdbxmou",
68
- "version": "0.3.9",
68
+ "version": "0.3.10",
69
69
  "description": "Node bindings for mdbx",
70
70
  "repository": {
71
71
  "type": "git",