UNPKG

cds-routing-handlers

Version:

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

23 lines (22 loc) 432 B
/** * Handler metadata arguments. * * @export * @interface IHandlerMetadataArgs */ export interface IHandlerMetadataArgs { /** * Target: JS function for the handler class. * * @type {Function} * @memberof IHandlerMetadataArgs */ target: Function; /** * Entity on which the handler acts. * * @type {string} * @memberof IHandlerMetadataArgs */ entity?: string; }