// SPDX-FileCopyrightText: 2025-2026 RAprogramm <andrey.rozanov.vl@gmail.com>
// SPDX-License-Identifier: MIT
//! Thin ergonomic wrappers over `web-sys` for DOM access.
//!
//! Provides a [`Document`] handle for resolving the current document and an
//! [`ElementExt`] trait with convenience methods for manipulating elements.
/// Document access helpers.
/// Element extension trait.
pub use Doc as Document;
pub use ElementExt;