UNPKG

optiovoluptas

Version:

Define Express routes using TypeScript decorators

16 lines (14 loc) 263 B
import {IControllerDefinition} from "./IControllerDefinition"; /** * A parsed controller */ export interface IController { /** * Controller routes */ defs: IControllerDefinition; /** * Controller root URL */ root: string; }