//! # Bindings to the `JavaScriptCore` framework
//!
//! See [Apple's docs][apple-doc] and [the general docs on framework crates][framework-crates] for more information.
//!
//! [apple-doc]: https://developer.apple.com/documentation/javascriptcore/
//! [framework-crates]: https://docs.rs/objc2/latest/objc2/topics/about_generated/index.html
// Update in Cargo.toml as well.
extern crate alloc;
extern crate std;
pub use *;
/// [Apple's documentation](https://developer.apple.com/documentation/javascriptcore/jsglobalcontextref?language=objc)
pub type JSGlobalContextRef = *mut OpaqueJSContext;
/// [Apple's documentation](https://developer.apple.com/documentation/javascriptcore/jsglobalcontextref?language=objc)
pub type JSObjectRef = *mut OpaqueJSValue;