UNPKG

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