Interface representing configuration options for a route decorator.

interface RouteDecoratorOptions {
    middlewares?: MIDDLEWARE[];
    path?: string;
}

Properties

Properties

middlewares?: MIDDLEWARE[]
path?: string