summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 939943a9..34e1e37d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -511,6 +511,12 @@ pub use crate::core::{
pub use crate::runtime::exit;
pub use iced_futures::Subscription;
+#[cfg(not(target_arch = "wasm32"))]
+pub use crate::core::animation;
+
+#[cfg(not(target_arch = "wasm32"))]
+pub use crate::core::Animation;
+
pub use alignment::Horizontal::{Left, Right};
pub use alignment::Vertical::{Bottom, Top};
pub use Alignment::Center;