mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-05-12 13:57:14 +00:00
13 lines
363 B
Rust
13 lines
363 B
Rust
|
#![allow(unused_imports)]
|
||
|
use wasm_bindgen::prelude::*;
|
||
|
#[wasm_bindgen]
|
||
|
#[doc = "The `NotificationDirection` enum."]
|
||
|
#[doc = ""]
|
||
|
#[doc = "*This API requires the following crate features to be activated: `NotificationDirection`*"]
|
||
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||
|
pub enum NotificationDirection {
|
||
|
Auto = "auto",
|
||
|
Ltr = "ltr",
|
||
|
Rtl = "rtl",
|
||
|
}
|