quickjs-emscripten • quickjs-emscripten-core • Readme | Exports
quickjs-emscripten / quickjs-emscripten-core / QuickJSAsyncEmscriptenModule
Typings for the features we use to interface with our Emscripten build of QuickJS.
FAST_MEMORY:
number
quickjs-emscripten-core.EmscriptenModule.FAST_MEMORY
packages/quickjs-ffi-types/src/emscripten-types.ts:168
HEAP16:
Int16Array
quickjs-emscripten-core.EmscriptenModule.HEAP16
packages/quickjs-ffi-types/src/emscripten-types.ts:158
HEAP32:
Int32Array
quickjs-emscripten-core.EmscriptenModule.HEAP32
packages/quickjs-ffi-types/src/emscripten-types.ts:159
HEAP8:
Int8Array
quickjs-emscripten-core.EmscriptenModule.HEAP8
packages/quickjs-ffi-types/src/emscripten-types.ts:157
HEAPF32:
Float32Array
quickjs-emscripten-core.EmscriptenModule.HEAPF32
packages/quickjs-ffi-types/src/emscripten-types.ts:163
HEAPF64:
Float64Array
quickjs-emscripten-core.EmscriptenModule.HEAPF64
packages/quickjs-ffi-types/src/emscripten-types.ts:164
HEAPU16:
Uint16Array
quickjs-emscripten-core.EmscriptenModule.HEAPU16
packages/quickjs-ffi-types/src/emscripten-types.ts:161
HEAPU32:
Uint32Array
quickjs-emscripten-core.EmscriptenModule.HEAPU32
packages/quickjs-ffi-types/src/emscripten-types.ts:162
HEAPU8:
Uint8Array
quickjs-emscripten-core.EmscriptenModule.HEAPU8
packages/quickjs-ffi-types/src/emscripten-types.ts:160
TOTAL_MEMORY:
number
quickjs-emscripten-core.EmscriptenModule.TOTAL_MEMORY
packages/quickjs-ffi-types/src/emscripten-types.ts:167
TOTAL_STACK:
number
quickjs-emscripten-core.EmscriptenModule.TOTAL_STACK
packages/quickjs-ffi-types/src/emscripten-types.ts:166
callbacks:
EmscriptenModuleCallbacks
packages/quickjs-ffi-types/src/emscripten-types.ts:243
type:
"async"
Implement this field
packages/quickjs-ffi-types/src/emscripten-types.ts:242
wasmBinary?:
ArrayBuffer
Compile this to WebAssembly.Module
quickjs-emscripten-core.EmscriptenModule.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.EmscriptenModule.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
quickjs-emscripten-core.EmscriptenModule.UTF8ToString
packages/quickjs-ffi-types/src/emscripten-types.ts:144
_free(
ptr
):void
• ptr: number
void
quickjs-emscripten-core.EmscriptenModule._free
packages/quickjs-ffi-types/src/emscripten-types.ts:148
_malloc(
size
):number
• size: number
number
quickjs-emscripten-core.EmscriptenModule._malloc
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
quickjs-emscripten-core.EmscriptenModule.cwrap
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.EmscriptenModule.instantiateWasm
packages/quickjs-ffi-types/src/emscripten-types.ts:110
lengthBytesUTF8(
str
):number
• str: string
number
quickjs-emscripten-core.EmscriptenModule.lengthBytesUTF8
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.EmscriptenModule.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.EmscriptenModule.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
quickjs-emscripten-core.EmscriptenModule.stringToUTF8
packages/quickjs-ffi-types/src/emscripten-types.ts:139
Generated using typedoc-plugin-markdown and TypeDoc