UNPKG

@sebastianwessel/quickjs

Version:

A typescript package to execute JavaScript and TypeScript code in a WebAssembly QuickJS sandbox

5 lines (4 loc) 289 B
import type { QuickJSAsyncWASMModule, QuickJSWASMModule } from 'quickjs-emscripten-core'; import type { Prettify } from './Prettify.js'; export type LoadQuickJsOptions = Prettify<string | QuickJSWASMModule>; export type LoadAsyncQuickJsOptions = Prettify<string | QuickJSAsyncWASMModule>;