telegram-webapp-sdk 0.11.2

Telegram WebApp SDK for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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.
pub mod document;
/// Element extension trait.
pub mod element;

pub use document::Doc as Document;
pub use element::ElementExt;