UNPKG

expresser

Version:

A ready to use Node.js web app wrapper, built on top of Express.

12 lines (11 loc) 278 B
import { App } from "./app"; import { Routes } from "./routes"; declare class Expresser { private static _instance; static get Instance(): Expresser; newInstance(): Expresser; app: App; routes: Routes; } declare const _default: Expresser; export = _default;