UNPKG

@mvx/mvc

Version:

@mvx/mvc is mvc framework on server, base on koa, @tsdi frameworks

14 lines (13 loc) 386 B
/// <reference types="node" /> import { IService } from '@tsdi/boot'; import { IConfiguration } from './IConfiguration'; import { Router } from './router/Router'; import { Server } from 'net'; export interface IMvcServer extends IService { uri: string; port: number; hostname: string; getConfig(): IConfiguration; getRouter(): Router; getHttpServer(): Server; }