UNPKG

cds-routing-handlers

Version:

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

12 lines (11 loc) 234 B
/** * CDS routing handler options. * * @export * @interface CdsRoutingHandlerOptions */ export interface ICdsRoutingHandlerOptions { handler: Function[] | string[]; middlewares?: Function[]; userChecker?: Function; }