UNPKG

routup

Version:

Routup is a minimalistic http based routing framework.

8 lines (7 loc) 261 B
import type { ParseOptions, PathToRegexpOptions } from 'path-to-regexp'; export type PathMatcherOptions = PathToRegexpOptions & ParseOptions; export type PathMatcherExecResult = { path: string; params: Record<string, any>; }; export type Path = string;