UNPKG

333 BTypeScriptView Raw
1import { RequestMethod } from '@nestjs/common';
2export interface ExcludeRouteMetadata {
3 /**
4 * Route path.
5 */
6 path: string;
7 /**
8 * Regular expression representing the route path.
9 */
10 pathRegex: RegExp;
11 /**
12 * HTTP request method (e.g., GET, POST).
13 */
14 requestMethod: RequestMethod;
15}