UNPKG

@nestjs/core

Version:

Nest - modern, fast, powerful node.js web framework (@core)

12 lines (11 loc) 280 B
import { RequestMethod } from '@nestjs/common'; export interface ExcludeRouteMetadata { /** * Regular expression representing the route path. */ pathRegex: RegExp; /** * HTTP request method (e.g., GET, POST). */ requestMethod: RequestMethod; }