UNPKG

cds-routing-handlers

Version:

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

13 lines (12 loc) 276 B
import { MiddlewareRuntime } from "../../../types/MiddlewareRuntime"; /** * Middleware decorator options. * * @export * @interface IMiddlewareOptions */ export interface IMiddlewareOptions { global?: boolean; priority?: number; runtime?: MiddlewareRuntime; }