@componentor/quickjs-asmjs-mjs-release-sync 0.31.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.
@@ -0,0 +1,20 @@
1
+ import { QuickJSSyncVariant } from '@componentor/quickjs-ffi-types';
2
+
3
+ /**
4
+ * ### @componentor/quickjs-asmjs-mjs-release-sync
5
+ *
6
+ * [Docs](https://github.com/componentor/quickjs-emscripten/blob/main/doc/@componentor/quickjs-asmjs-mjs-release-sync/README.md) |
7
+ * Compiled to pure Javascript, no WebAssembly required.
8
+ *
9
+ * | Variable | Setting | Description |
10
+ * | -- | -- | -- |
11
+ * | library | quickjs | The original [bellard/quickjs](https://github.com/bellard/quickjs) library. Version [2024-02-14+36911f0d](https://github.com/bellard/quickjs/commit/36911f0d3ab1a4c190a4d5cbe7c2db225a455389) vendored to quickjs-emscripten on 2024-06-15. |
12
+ * | releaseMode | release | Optimized for performance; use when building/deploying your application. |
13
+ * | syncMode | sync | The default, normal build. Note that both variants support regular async functions. |
14
+ * | emscriptenInclusion | asmjs | The C library code is compiled to Javascript, no WebAssembly used. Sometimes called "asmjs". This is the slowest possible option, and is intended for constrained environments that do not support WebAssembly, like quickjs-for-quickjs. |
15
+ * | exports | import | Has these package.json export conditions |
16
+ *
17
+ */
18
+ declare const variant: QuickJSSyncVariant;
19
+
20
+ export { variant as default };