mirror of
https://github.com/MioMioOS/MioIsland
synced 2026-04-21 21:47:47 +00:00
Replace with native .bundle plugin architecture in next commits. Old declarative system (themes/buddy/sound JSON) removed entirely. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
15 lines
437 B
JavaScript
15 lines
437 B
JavaScript
const { MessageHandler, instantiateNapiModuleSync, instantiateNapiModule } = require('@emnapi/core')
|
|
const { getDefaultContext } = require('@emnapi/runtime')
|
|
const { WASI } = require('@tybys/wasm-util')
|
|
|
|
const { createFsProxy, createOnMessage } = require('./dist/fs-proxy.cjs')
|
|
|
|
module.exports = {
|
|
MessageHandler,
|
|
instantiateNapiModule,
|
|
instantiateNapiModuleSync,
|
|
getDefaultContext,
|
|
WASI,
|
|
createFsProxy,
|
|
createOnMessage,
|
|
}
|