@miracledevs/paradigm-express-webapi
Version:
An easy to use MVC WebApi implementation over Express.
9 lines (8 loc) • 347 B
TypeScript
import { ControllerType } from "../decorators/controller-type";
import { ActionType } from "../decorators/action-type";
export declare class RoutingContext {
readonly controllerType: ControllerType;
readonly actionType: ActionType;
constructor(controllerType: ControllerType, actionType: ActionType);
toString(): string;
}