Skip to main content
Module

x/path_to_regexp/index.ts>Match

Turn a path string such as `/user/:name` into a regular expression
Go to Latest
type alias Match
import { type Match } from "https://deno.land/x/path_to_regexp@v6.2.1/index.ts";

A match is either false (no match) or a match result.

Type Parameters

optional
P extends object = object
definition: false | MatchResult<P>