UNPKG

gypsum

Version:

Simple and easy lightweight typescript server side framework on Node.js.

10 lines (9 loc) 228 B
/// <reference types="@types/node" /> import * as express from 'express'; import * as http from 'http'; export declare class Server { app: express.Express; server: http.Server; io: any; start(): void; }