fresh_plugin_runtime/backend/mod.rs
1//! Plugin backend abstraction layer
2//!
3//! This module provides the JavaScript runtime backend for executing TypeScript plugins.
4//! Currently implements QuickJS with oxc transpilation.
5
6pub mod quickjs_backend;
7
8pub use quickjs_backend::{
9 has_fatal_js_error, set_panic_on_js_errors, take_fatal_js_error, PendingResponses,
10 QuickJsBackend, TsPluginInfo,
11};