UNPKG

itty-router

Version:

A tiny, zero-dependency router, designed to make beautiful APIs in any environment.

7 lines (6 loc) 188 B
import { GenericTraps } from './GenericTraps'; import { RouteEntry } from './RouteEntry'; export type IttyRouterOptions = { base?: string; routes?: RouteEntry[]; } & GenericTraps;