/** * path.ts * * @package vrkd/src/string * @author Fernando Salazar */ /** * /hello/:name /hello/fernando * @param {string} $path - Path to match * @param {string} $pattern - The pattern to match path against against * @return {object} PathMatchParams | null if no matches */ export declare function PathMatch($path: string, $pattern: string): PathMatchParams | null; export interface PathMatchParams { path: string; pattern: string; [k: string]: string; }