PathPattern
A PathPattern is used to match on some portion of a URL pathname.
interface PathPattern <Path extends string = string> {
caseSensitive?: boolean;
end?: boolean;
path: Path;
}A PathPattern is used to match on some portion of a URL pathname.