UNPKG

alapa

Version:

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

9 lines (8 loc) 232 B
import { Router } from "express"; import { BaseRouterInterface } from "./base"; export interface IRouter extends BaseRouterInterface { toExpressRoutes: () => Router; getNames: () => { [key: string]: string; }; }