123456789101112131415161718192021222324252627282930 |
- import { HTTPMethod } from './utils/constants.js';
- import { Handler, HandlerObject, MatchCallback } from './_types.js';
- import './_version.js';
- declare class Route {
- handler: HandlerObject;
- match: MatchCallback;
- method: HTTPMethod;
-
- constructor(match: MatchCallback, handler: Handler, method?: HTTPMethod);
- }
- export { Route };
|