UNPKG

json-routing

Version:

JSON configurable MVC routing for express 4

12 lines (11 loc) 198 B
/** * Interface for route info */ export interface IRouteInfo { verb: string , url: string , controllerName: string , status: string , protected: boolean , cors: boolean }