nralcm
Version:
This is a framework based on NodeJs to manage rest api request lifecycle
10 lines (9 loc) • 348 B
TypeScript
import { HttpContext, RestApiConfiguration } from "..";
import { IRoute } from "../../common";
/**
* Maps Route with controller,
* If not found throws not Found exception
* @param context HttpContext Object
* @returns route
*/
export declare function ControllerMapper(context: HttpContext, restApiConfiguration: RestApiConfiguration): IRoute;