Skip to main content

oxilean_wasm/
lib.rs

1//! WebAssembly bindings for OxiLean.
2//!
3//! This crate provides a WASM-compatible API for the OxiLean type checker,
4//! allowing use from JavaScript/TypeScript in web browsers or Node.js.
5#![allow(dead_code)]
6#![allow(unused_imports)]
7
8pub mod api;
9pub mod error;
10pub mod types;
11
12#[cfg(feature = "wasm")]
13pub mod wasm_api;