Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/http_wrapper/types.ts>RouteVariables

Simple Server/Router wrapper around Deno's HTTP module
Latest
type alias RouteVariables
import { type RouteVariables } from "https://deno.land/x/http_wrapper@v0.5.0/types.ts";
definition: { query: { [key: string]: string; }; param: { [key: string]: string; }; body: any; }