13 lines
376 B
TypeScript
13 lines
376 B
TypeScript
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)[];
|
|
}
|