quiver-dsp 0.1.0

A modular audio synthesis library using Arrow-style combinators and graph-based patching
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! WASM bindings for Quiver
//!
//! This module provides the JavaScript-facing API for running Quiver
//! in a browser environment via WebAssembly.

mod engine;
mod error;

pub use engine::QuiverEngine;
pub use error::QuiverError;

// Re-export wasm_bindgen for convenience
pub use wasm_bindgen::prelude::*;