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