UNPKG

web-dev-server

Version:

Node.js simple http server for common development or training purposes.

12 lines (11 loc) 342 B
import { Request } from "./Request"; import { Response } from "./Response"; export declare class Event { req: Request; res: Response; fullPath: string; protected preventDefault: boolean; constructor(req: Request, res: Response, fullPath: string); PreventDefault(): Event; IsPreventDefault(): boolean; }