electron_sys/
lib.rs

1//! Raw bindings to the Electron API for projects using wasm-bindgen
2
3#![deny(clippy::all)]
4// #![deny(missing_docs)] // FIXME: wasm-bindgen macros break this
5
6pub(crate) mod class;
7pub(crate) mod interface;
8pub(crate) mod module;
9
10pub use class::*;
11pub use interface::*;
12pub use module::*;