mirror of
https://github.com/visioncortex/vtracer.git
synced 2026-09-10 14:18:47 -07:00
7 lines
146 B
Rust
7 lines
146 B
Rust
pub fn window() -> web_sys::Window {
|
|
web_sys::window().unwrap()
|
|
}
|
|
|
|
pub fn document() -> web_sys::Document {
|
|
window().document().unwrap()
|
|
} |