Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Match

import type { Match } from "https://raw.githubusercontent.com/pillarjs/path-to-regexp/master/src/index.ts";

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

type Match<P extends ParamData> = false | MatchResult<P>;

§Type Parameters

§Type