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 +1 -2
- package/lib/types.d.ts +2 -1
- package/package.json +1 -1
package/lib/nativemou.js
CHANGED
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
|
}
|