@izumi-framework/izumi-runtime-typescript 1.1.0-M2 → 1.1.0-M3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": false,
3
3
  "name": "@izumi-framework/izumi-runtime-typescript",
4
- "version": "1.1.0-M2",
4
+ "version": "1.1.0-M3",
5
5
  "description": "Preliminary Izumi TypeScript runtime",
6
6
  "author": "Izumi Framework contributors",
7
7
  "license": "MIT",
@@ -12,7 +12,7 @@ export declare class HttpServerGeneric<C> {
12
12
  private _logger;
13
13
  private _handlers;
14
14
  private _dispatcher;
15
- get server(): http.Server;
15
+ get server(): http.Server<typeof http.IncomingMessage, typeof http.ServerResponse>;
16
16
  constructor(endpoint: string, port: number, services: ServiceDispatcher<ConnectionContext<C>, string>[], logger: Logger, open?: boolean, dispatcher?: Dispatcher<ConnectionContext<C>, string> | undefined, handlers?: TransportHandlers<C> | undefined);
17
17
  open(): void;
18
18
  protected requestHandler(request: http.IncomingMessage, response: http.ServerResponse): void;