UNPKG

@nestjs/common

Version:

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

13 lines (12 loc) 376 B
import { RequestMethod } from '../../enums'; import { Type } from '../type.interface'; import { VersionValue } from '../version-options.interface'; export interface RouteInfo { path: string; method: RequestMethod; version?: VersionValue; } export interface MiddlewareConfiguration<T = any> { middleware: T; forRoutes: (Type<any> | string | RouteInfo)[]; }