| 1 | #![allow (unused_imports)] |
| 2 | #![allow (clippy::all)] |
| 3 | use wasm_bindgen::prelude::*; |
| 4 | #[wasm_bindgen ] |
| 5 | #[doc = "The `OrientationType` enum." ] |
| 6 | #[doc = "" ] |
| 7 | #[doc = "*This API requires the following crate features to be activated: `OrientationType`*" ] |
| 8 | #[derive (Debug, Clone, Copy, PartialEq, Eq)] |
| 9 | pub enum OrientationType { |
| 10 | PortraitPrimary = "portrait-primary" , |
| 11 | PortraitSecondary = "portrait-secondary" , |
| 12 | LandscapePrimary = "landscape-primary" , |
| 13 | LandscapeSecondary = "landscape-secondary" , |
| 14 | } |
| 15 | |