diff --git a/packages/@nodepack/plugin-express/types/index.d.ts b/packages/@nodepack/plugin-express/types/index.d.ts index f8c386e..a6a70af 100644 --- a/packages/@nodepack/plugin-express/types/index.d.ts +++ b/packages/@nodepack/plugin-express/types/index.d.ts @@ -1,7 +1,9 @@ import { Express, Request, Response } from 'express' +import { Server } from 'http' export interface ExpressContext { express: Express + httpServer: Server req: Request res: Response port: Number