//! Node-App API - Shared types and C ABI definitions
//!
//! This crate provides shared types used by:
//! - The host backend (NodeAppManager, NativeLoader, BunLoader)
//! - Native app SDKs (Rust, Go, C, Zig via C ABI)
//! - Scripted app SDKs (TypeScript/JavaScript via IPC)
// Re-exports for convenience
pub use NodeAppContext;
pub use ;
pub use ;
/// API version for compatibility checking between host and native apps.
/// Host and app must have matching API_VERSION to load successfully.
pub const API_VERSION: u32 = 1;