animate/tween/
mod.rs

1#![allow(clippy::module_inception)]
2
3pub const VERSION: &str = "18.6.4";
4
5// pub const MAIN_GROUP: Group = Group::new();
6
7// Convert [seconds, nanoseconds] to milliseconds.
8// let now: () => number
9// const now = fn() {
10//     Date.getTime()
11// }
12
13mod easing;
14pub use easing::*;
15
16mod group;
17pub use group::*;
18
19mod index;
20pub use index::*;
21
22mod sequence;
23pub use sequence::*;
24
25mod tests;
26pub use tests::*;
27
28mod tween;
29pub use tween::*;