Skip to main content
Module

x/rutt/mod.ts>InternalRoute

🛣️ A tiny and fast http request router designed for use with deno and deno deploy
Go to Latest
type alias InternalRoute
import { type InternalRoute } from "https://deno.land/x/rutt@0.0.14/mod.ts";

The internal route object contains either a RegExp pattern or URLPattern which is matched against the incoming request URL. If a match is found for both the pattern and method the associated MatchHandler is called.

Type Parameters

optional
T = { }
definition: { pattern: RegExp | URLPattern; methods: Record<string, MatchHandler<T>>; }