We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd8002b commit 3311488Copy full SHA for 3311488
adonis-typings/request.ts
@@ -14,6 +14,7 @@
14
declare module '@ioc:Adonis/Core/Request' {
15
import { UrlWithStringQuery } from 'url'
16
import { MacroableConstructorContract } from 'macroable'
17
+ import { EncryptionContract } from '@ioc:Adonis/Core/Encryption'
18
import { IncomingHttpHeaders, IncomingMessage, ServerResponse } from 'http'
19
20
/**
@@ -90,6 +91,7 @@ declare module '@ioc:Adonis/Core/Request' {
90
91
new (
92
request: IncomingMessage,
93
response: ServerResponse,
94
+ encryption: EncryptionContract,
95
config: RequestConfigContract,
96
): RequestContract
97
}
0 commit comments