//! Library-specific type definitions
/// Represents any error type.
///
/// # Note
/// It may be worth it to refactor the error handling logic to instead
/// use `anyhow` or something similar, if and when time allows.
pub type Error = ;
/// A simple type alias so as to DRY.
pub type Result<T> = Result;