/// Glob `str` typically for Unix system path pattern matching.
///
/// Example:
///
/// ```
/// let s: GlobStr = "foo/**/*";
/// ```
///
pub type GlobStr = str;
/// Glob `String` typically for Unix system path pattern matching.
///
/// Example:
///
/// ```
/// let s: GlobString = GlobString::from("foo/**/*");
/// ```
///
pub type GlobString = String;