1 | /// <reference types="node" />
|
2 | import * as http from 'http';
|
3 | import * as https from 'https';
|
4 | import { MaybePromise } from '../common/types';
|
5 | export interface Address {
|
6 | readonly port: number;
|
7 | readonly address: string;
|
8 | }
|
9 | export declare function start(serverModule: MaybePromise<http.Server | https.Server>): Promise<Address>;
|
10 | export default start;
|
11 | //# sourceMappingURL=main.d.ts.map |
\ | No newline at end of file |