Skip to content

Commit

Permalink
fix: use correct type name
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed May 26, 2019
1 parent 3d3f5c6 commit 076a5f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adonis-typings/http-context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ declare module '@ioc:Adonis/Core/HttpContext' {
import { ResponseContract } from '@ioc:Adonis/Core/Response'
import { RequestContract } from '@ioc:Adonis/Core/Request'
import { LoggerContract } from '@ioc:Adonis/Core/Logger'
import { HttpContextContract as BaseContextContract, ServerConfig } from '@poppinss/http-server'
import { HttpContextContract as BaseContextContract, ServerConfigContract } from '@poppinss/http-server'

const HttpContext: HttpContextConstructorContract

Expand All @@ -35,7 +35,7 @@ declare module '@ioc:Adonis/Core/HttpContext' {
routeParams: any,
req?: IncomingMessage,
res?: ServerResponse,
serverConfig?: ServerConfig,
serverConfig?: ServerConfigContract,
): HttpContextContract
}

Expand Down

0 comments on commit 076a5f8

Please sign in to comment.