UNPKG

express-decorated-router

Version:

Define Express routes using TypeScript decorators

10 lines (9 loc) 283 B
/** * Thrown when an input of a @Parent decoration has not been decorated with @Controller */ export declare class ParentControllerError extends Error { /** The child controller */ readonly child: Function; /** The parent controller */ readonly parent: Function; }