UNPKG

@nestjs/core

Version:

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

16 lines (15 loc) 338 B
import type { 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; }