UNPKG

cds-routing-handlers

Version:

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

13 lines (12 loc) 186 B
/** * Execution context. * * @export * @interface IExecContext */ export interface IExecContext { srv: any; req: any; next: Function | undefined; e?: any[] | any; }