UNPKG

@methodus/server

Version:

Server components for @methodus workflow

8 lines (7 loc) 245 B
/// <reference types="node" /> import * as https from 'https'; import * as http from 'http'; export declare class ServerCreator { createHttp(app: any): http.Server; createHttps(app: any, options: Record<string, string>): https.Server; }