#![deny(warnings)]
pub mod dom;
pub mod behavior;
pub mod integration;
pub mod runtime;
pub mod web {
pub use web_sys::{
Element, HtmlElement, HtmlInputElement,
Event, MouseEvent, KeyboardEvent, PointerEvent,
EventTarget, Document, Window,
CustomEvent, CustomEventInit,
HtmlCanvasElement, CanvasRenderingContext2d,
Node, NodeList,
};
}