1
2
3
4
5
6
7
8
9
extern crate prototty_wasm_input;
extern crate prototty_wasm_render;
#[cfg(feature = "storage")]
extern crate prototty_wasm_storage;

pub use prototty_wasm_input::*;
pub use prototty_wasm_render::*;
#[cfg(feature = "storage")]
pub use prototty_wasm_storage::*;