elvis_web/lib.rs
1//! This library implements Elvis in browser, most of the contents are interfaces.
2//!
3//! You can rust the web with this crate, and...no javascript usages in this doc mainly because rust-doc can not highlight `javascript` code, we strongly recommend you reading [The Book][1] if you wondering how to "calling elvis".
4//!
5//! [1]: https://clearloop.github.io/elvis
6#![warn(missing_docs)]
7mod driver;
8mod err;
9pub mod event;
10mod gesture;
11mod node;
12mod page;
13mod router;
14mod style;
15
16use self::style::StyleSheet;
17pub use self::{driver::Driver, err::Error, page::Page, router::Router};
18
19/// Re-exports wasm-bindgen
20pub mod wasm_bindgen_re_exports {
21 pub use wasm_bindgen;
22 pub use wasm_bindgen::prelude::*;
23}