use PhantomData;
use NonZero;
/// Period in seconds represented as a ratio.
///
/// ```rust
/// use typus_fugit::typenum::{U1, U60, U1000};
/// use typus_fugit::Period;
/// type Seconds = Period<U1, U1>;
/// type Minutes = Period<U60, U1>;
/// type Ms = Period<U1, U1000>;
/// ```