@dooboostore/simple-boot-http-server
Version:
back end http server frameworks
14 lines • 721 B
TypeScript
import { SimpleApplication } from '@dooboostore/simple-boot/SimpleApplication';
import { HttpServerOption } from './option/HttpServerOption';
import { ConstructorType } from '@dooboostore/core/types';
import { Server as HttpServer } from 'http';
import { Server as HttpsServer } from 'https';
export declare class SimpleBootHttpServer extends SimpleApplication {
option: HttpServerOption;
server?: HttpServer | HttpsServer;
private sessionManager;
constructor(option?: HttpServerOption);
run(otherInstanceSim?: Map<ConstructorType<any>, any>): import("@dooboostore/simple-boot/simstance/SimstanceManager").SimstanceManager;
private startServer;
}
//# sourceMappingURL=SimpleBootHttpServer.d.ts.map