UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

16 lines (15 loc) • 333 B
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; }