/**
 * @module Path
 *
 * Represents a path specification.
 *
 */
export type Type = string | URL | Map<string | URL, string | URL>;
export type { Type as default };
