#[cfg(feature = "alloc")]
use crate::types::{
RiAbsoluteString, RiFragmentString, RiReferenceString, RiRelativeString, RiString,
};
use crate::{
spec::UriSpec,
types::{RiAbsoluteStr, RiFragmentStr, RiReferenceStr, RiRelativeStr, RiStr},
};
pub type UriAbsoluteStr = RiAbsoluteStr<UriSpec>;
#[cfg(feature = "alloc")]
pub type UriAbsoluteString = RiAbsoluteString<UriSpec>;
pub type UriFragmentStr = RiFragmentStr<UriSpec>;
#[cfg(feature = "alloc")]
pub type UriFragmentString = RiFragmentString<UriSpec>;
pub type UriStr = RiStr<UriSpec>;
#[cfg(feature = "alloc")]
pub type UriString = RiString<UriSpec>;
pub type UriReferenceStr = RiReferenceStr<UriSpec>;
#[cfg(feature = "alloc")]
pub type UriReferenceString = RiReferenceString<UriSpec>;
pub type UriRelativeStr = RiRelativeStr<UriSpec>;
#[cfg(feature = "alloc")]
pub type UriRelativeString = RiRelativeString<UriSpec>;