UNPKG

dinoloop-es8

Version:

A lightweight REST API Library for building scalable Node.js server-side applications powered by Typescript

8 lines (7 loc) 239 B
import { IRouteTable } from '../interfaces'; export declare class RouteTable implements IRouteTable { private routes; add(route: string, httpVerb: string): void; getRoutes(): string[]; static create(): RouteTable; }