1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#![allow(clippy::module_inception)]

pub const VERSION: &str = "18.6.4";

// pub const MAIN_GROUP: Group = Group::new();

// Convert [seconds, nanoseconds] to milliseconds.
// let now: () => number
// const now = fn() {
//     Date.getTime()
// }

mod easing;
pub use easing::*;

mod group;
pub use group::*;

mod index;
pub use index::*;

mod sequence;
pub use sequence::*;

mod tests;
pub use tests::*;

mod tween;
pub use tween::*;