UNPKG

webserv

Version:

a quick, flexible, fully typed development server

10 lines (9 loc) 293 B
import { GuardFactory } from '../interface'; export interface PathGuardProperties { match: RegExp | string; } export interface Params { [key: string]: string; } export declare const routeMatch: unique symbol; export declare const pathGuard: GuardFactory<PathGuardProperties>;