UNPKG

signalk-server

Version:

An implementation of a [Signal K](http://signalk.org) server for boats.

14 lines 943 B
/** * WASM Plugin Loader - Main Entry Point * * Central export module for the WASM plugin loader subsystem. * This is the single entry point that re-exports all public APIs from the loader modules. */ import { startWasmPlugin, stopWasmPlugin, unloadWasmPlugin, reloadWasmPlugin, handleWasmPluginCrash, shutdownAllWasmPlugins } from './plugin-lifecycle'; import { updateWasmPluginConfig, setWasmPluginEnabled } from './plugin-config'; export * from './types'; export { wasmPlugins, restartTimers, setPluginStatus, registerWasmPlugin, getAllWasmPlugins, getWasmPlugin } from './plugin-registry'; export { startWasmPlugin, stopWasmPlugin, unloadWasmPlugin, reloadWasmPlugin, handleWasmPluginCrash, shutdownAllWasmPlugins }; export { updateWasmPluginConfig, setWasmPluginEnabled }; export { backwardsCompat, handleLogViewerRequest, setupPluginSpecificRoutes, setupWasmPluginRoutes } from './plugin-routes'; //# sourceMappingURL=index.d.ts.map