UNPKG

cds-routing-handlers

Version:

Package to route and implement CDS handlers via a class based approach in Typescript.

12 lines (11 loc) 195 B
/** * Register options. * * @export * @interface IRegisterOptions */ export interface IRegisterOptions { handler: Function[]; middlewares?: Function[]; userChecker?: Function; }