Skip to main content
Module

x/cav/client.ts>RouterShape

A server framework for Deno
Go to Latest
type alias RouterShape
import { type RouterShape } from "https://deno.land/x/cav@0.2.3/client.ts";

The shape of a RouterRequest, mapping allowed routes to their handlers.

definition: { [x: string]: (
| Handler[]
| string
| null
); }