#![allow(non_snake_case)]
pub mod animation;
pub mod decay_spec;
pub use animation::*;
pub use decay_spec::{FlingCalculator, FlingInfo, FloatDecayAnimationSpec, SplineBasedDecaySpec};
pub mod prelude {
pub use crate::animation::{
animateFloatAsState, animateFloatAsStateWithSpec, Animatable, AnimationSpec, AnimationType,
Easing, Lerp, SpringSpec,
};
pub use crate::decay_spec::{FlingCalculator, FloatDecayAnimationSpec, SplineBasedDecaySpec};
}