@nestjs/core
Version:
Nest - modern, fast, powerful node.js web framework (@core)
16 lines (15 loc) • 333 B
TypeScript
import { RequestMethod } from '@nestjs/common';
export interface ExcludeRouteMetadata {
/**
* Route path.
*/
path: string;
/**
* Regular expression representing the route path.
*/
pathRegex: RegExp;
/**
* HTTP request method (e.g., GET, POST).
*/
requestMethod: RequestMethod;
}