1 2 3 4 5 6 7 8 9 10 11 12
pub mod browser; pub mod config; pub mod error; pub mod output; pub mod screenshot; pub use error::{Result, WebshotError}; // Re-export commonly used types pub use browser::Browser; pub use config::{Config, ScreenshotConfig}; pub use screenshot::ScreenshotOptions;