fresh-plugin-runtime 0.3.10

JavaScript plugin runtime for Fresh editor
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Plugin backend abstraction layer
//!
//! This module provides the JavaScript runtime backend for executing TypeScript plugins.
//! Currently implements QuickJS with oxc transpilation.

pub mod quickjs_backend;

pub use quickjs_backend::{
    has_fatal_js_error, set_panic_on_js_errors, take_fatal_js_error, PendingResponses,
    QuickJsBackend, TsPluginInfo,
};