A map that provides access to the required and optional parameters specific to a route. The map supports retrieving a single value with get() or multiple values with getAll().
get()
getAll()
interface ParamMap { has(name: string): boolean; get(name: string): string | null; getAll(name: string): string[]; readonly keys: string[];}