@nova-ts/core
Version:
A serverside framework used to build scalable application
16 lines (14 loc) • 424 B
TypeScript
/**
* It is used to decorate class which interact with api request
* @description It takes base path ""
* @author Inbanithi107
*/
declare function Controller(): ClassDecorator;
/**
*
* @param basePath The path used to map request to the controller
* @description It is used to map controller with path
* @author Inbanithi107
*/
declare function Controller(basePath: string): ClassDecorator;
export { Controller };