use typenum::op;
use typenum::U1;
use typenum::U100;
use typenum::U1000;
use typenum::U1000000;
use typenum::U1000000000;
use typenum::U36;
use typenum::U60;
pub type U3600 = op!(U36 * U100);
use crate::Duration;
use crate::Instant;
use crate::Rate;
pub type NanosDuration<T> = Duration<T, U1, U1000000000>;
pub type NanosDurationU32 = Duration<u32, U1, U1000000000>;
pub type NanosDurationU64 = Duration<u64, U1, U1000000000>;
pub type MicrosDuration<T> = Duration<T, U1, U1000000>;
pub type MicrosDurationU32 = Duration<u32, U1, U1000000>;
pub type MicrosDurationU64 = Duration<u64, U1, U1000000>;
pub type MillisDuration<T> = Duration<T, U1, U1000>;
pub type MillisDurationU32 = Duration<u32, U1, U1000>;
pub type MillisDurationU64 = Duration<u64, U1, U1000>;
pub type SecsDuration<T> = Duration<T, U1, U1>;
pub type SecsDurationU32 = Duration<u32, U1, U1>;
pub type SecsDurationU64 = Duration<u64, U1, U1>;
pub type MinutesDuration<T> = Duration<T, U60, U1>;
pub type MinutesDurationU32 = Duration<u32, U60, U1>;
pub type MinutesDurationU64 = Duration<u64, U60, U1>;
pub type HoursDuration<T> = Duration<T, U3600, U1>;
pub type HoursDurationU32 = Duration<u32, U3600, U1>;
pub type HoursDurationU64 = Duration<u64, U3600, U1>;
pub type TimerDuration<T, FreqHz> = Duration<T, U1, FreqHz>;
pub type TimerDurationU32<FreqHz> = Duration<u32, U1, FreqHz>;
pub type TimerDurationU64<FreqHz> = Duration<u64, U1, FreqHz>;
pub type TimerInstant<T, FreqHz> = Instant<T, U1, FreqHz>;
pub type TimerInstantU32<FreqHz> = Instant<u32, U1, FreqHz>;
pub type TimerInstantU64<FreqHz> = Instant<u64, U1, FreqHz>;
pub type Hertz<T> = Rate<T, U1, U1>;
pub type HertzU32 = Rate<u32, U1, U1>;
pub type HertzU64 = Rate<u64, U1, U1>;
pub type Kilohertz<T> = Rate<T, U1000, U1>;
pub type KilohertzU32 = Rate<u32, U1000, U1>;
pub type KilohertzU64 = Rate<u64, U1000, U1>;
pub type Megahertz<T> = Rate<T, U1000000, U1>;
pub type MegahertzU32 = Rate<u32, U1000000, U1>;
pub type MegahertzU64 = Rate<u64, U1000000, U1>;
pub type TimerRate<T, FreqHz> = Rate<T, FreqHz, U1>;
pub type TimerRateU32<FreqHz> = Rate<u32, FreqHz, U1>;
pub type TimerRateU64<FreqHz> = Rate<u64, FreqHz, U1>;