UNPKG

@dazejs/framework

Version:

Daze.js - A powerful web framework for Node.js

14 lines (13 loc) 464 B
/// <reference types="node" /> /// <reference types="node" /> import * as http from 'http'; import * as https from 'https'; import { Application } from '../../foundation/application'; export declare class AppServer { app: Application; server: http.Server | https.Server; getServer(): http.Server | https.Server; createServer(): http.Server | https.Server; end(data: any, request: any): Promise<void>; listen(...args: any[]): http.Server; }