quickjs-emscripten • quickjs-emscripten-core • Readme | Exports
quickjs-emscripten / quickjs-emscripten-core / EmscriptenModule
Typings for the features we use to interface with our Emscripten build of QuickJS.
FAST_MEMORY:
number
packages/quickjs-ffi-types/src/emscripten-types.ts:168
HEAP16:
Int16Array
packages/quickjs-ffi-types/src/emscripten-types.ts:158
HEAP32:
Int32Array
packages/quickjs-ffi-types/src/emscripten-types.ts:159
HEAP8:
Int8Array
packages/quickjs-ffi-types/src/emscripten-types.ts:157
HEAPF32:
Float32Array
packages/quickjs-ffi-types/src/emscripten-types.ts:163
HEAPF64:
Float64Array
packages/quickjs-ffi-types/src/emscripten-types.ts:164
HEAPU16:
Uint16Array
packages/quickjs-ffi-types/src/emscripten-types.ts:161
HEAPU32:
Uint32Array
packages/quickjs-ffi-types/src/emscripten-types.ts:162
HEAPU8:
Uint8Array
packages/quickjs-ffi-types/src/emscripten-types.ts:160
TOTAL_MEMORY:
number
packages/quickjs-ffi-types/src/emscripten-types.ts:167
TOTAL_STACK:
number
packages/quickjs-ffi-types/src/emscripten-types.ts:166
wasmBinary?:
ArrayBuffer
Compile this to WebAssembly.Module
quickjs-emscripten-core.EmscriptenModuleLoaderOptions.wasmBinary
packages/quickjs-ffi-types/src/emscripten-types.ts:104
wasmMemory?:
Memory
If provided, use this WebAssembly.Memory instead of an automatically created one.
quickjs-emscripten-core.EmscriptenModuleLoaderOptions.wasmMemory
packages/quickjs-ffi-types/src/emscripten-types.ts:107
UTF8ToString(
ptr
,maxBytesToRead
?):string
HeapChar to JS string. https://emscripten.org/docs/api_reference/preamble.js.html#UTF8ToString
• ptr: BorrowedHeapCharPointer
• maxBytesToRead?: number
string
packages/quickjs-ffi-types/src/emscripten-types.ts:144
_free(
ptr
):void
• ptr: number
void
packages/quickjs-ffi-types/src/emscripten-types.ts:148
_malloc(
size
):number
• size: number
number
packages/quickjs-ffi-types/src/emscripten-types.ts:147
cwrap(
ident
,returnType
,argTypes
,opts
?): (...args
) =>any
• ident: string
• returnType: null
| ValueType
• argTypes: ValueType
[]
• opts?: CCallOpts
Function
• ...args:
any
[]
any
packages/quickjs-ffi-types/src/emscripten-types.ts:149
optional
instantiateWasm(imports
,onSuccess
):Exports
|Promise
<Exports
>
Create an instance of the WASM module, call onSuccess(instance), then return instance.exports
• imports: Imports
• onSuccess: (instance
) => void
Exports
| Promise
<Exports
>
quickjs-emscripten-core.EmscriptenModuleLoaderOptions.instantiateWasm
packages/quickjs-ffi-types/src/emscripten-types.ts:110
lengthBytesUTF8(
str
):number
• str: string
number
packages/quickjs-ffi-types/src/emscripten-types.ts:145
optional
locateFile(fileName
,prefix
):string
If set, this method will be called when the runtime needs to load a file, such as a .wasm WebAssembly file, .mem memory init file, or a file generated by the file packager.
The function receives two parameters:
fileName
, the relative path to the file as configured in build process, eg"emscripten-module.wasm"
.prefix
(path to the main JavaScript file’s directory). This may be''
(empty string) in some cases if the Emscripten Javascript code can't locate itself. Try logging it in your environment.
It should return the actual URI or path to the requested file.
This lets you host file packages on a different location than the directory of the JavaScript file (which is the default expectation), for example if you want to host them on a CDN.
• fileName: string
• prefix: string
Often ''
(empty string)
string
quickjs-emscripten-core.EmscriptenModuleLoaderOptions.locateFile
packages/quickjs-ffi-types/src/emscripten-types.ts:97
optional
monitorRunDependencies(left
):void
Called by emscripten as dependencies blocking initialization are added or fulfilled. May only be called in debug builds.
• left: number
void
quickjs-emscripten-core.EmscriptenModuleLoaderOptions.monitorRunDependencies
packages/quickjs-ffi-types/src/emscripten-types.ts:116
stringToUTF8(
str
,outPtr
,maxBytesToRead
?):void
Write JS str
to HeapChar pointer.
https://emscripten.org/docs/api_reference/preamble.js.html#stringToUTF8
• str: string
• outPtr: OwnedHeapCharPointer
• maxBytesToRead?: number
void
packages/quickjs-ffi-types/src/emscripten-types.ts:139
Generated using typedoc-plugin-markdown and TypeDoc