viewpoint_cdp/protocol/
mod.rs

1//! CDP protocol domain types.
2
3pub mod browser;
4pub mod dom;
5pub mod dom_snapshot;
6pub mod emulation;
7pub mod fetch;
8pub mod input;
9pub mod network;
10mod network_cookies;
11mod network_websocket;
12pub mod page;
13mod page_dialog;
14mod page_download;
15mod page_screencast;
16pub mod runtime;
17pub mod storage;
18pub mod target_domain;
19pub mod tracing;
20
21// Re-export cookie and websocket types from network module
22pub use network_cookies::*;
23pub use network_websocket::*;
24
25// Re-export page dialog, download, and screencast types
26pub use page_dialog::*;
27pub use page_download::*;
28pub use page_screencast::*;