Skip to content

Commit

Permalink
Merge pull request #11280 from micalevisk/fix/issue-11279
Browse files Browse the repository at this point in the history
fix(platform-express): wrong type def for `NestExpressApplication#listen`
  • Loading branch information
kamilmysliwiec committed Mar 15, 2023
2 parents a61bcd3 + 545d69c commit 1518191
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/platform-express/adapters/express-adapter.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Server } from 'net';
import type { Server } from 'http';
import {
HttpStatus,
InternalServerErrorException,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Server } from 'net';
import { Server } from 'http';
import { INestApplication } from '@nestjs/common';
import * as bodyparser from 'body-parser';
import { NestExpressBodyParserOptions } from './nest-express-body-parser-options.interface';
Expand Down

0 comments on commit 1518191

Please sign in to comment.