UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

10 lines (9 loc) 328 B
import { Router } from "."; import { RouteChain } from "../interface/route-chain"; import { StringObject } from "../../../interface/object"; export declare class RouteChainManger { private router; private routesNames; constructor(router: Router, routesNames: StringObject); getChain(path: string): RouteChain; }