Fixing type.

This commit is contained in:
mike12345567 2024-12-05 11:49:22 +00:00
parent 48379021ef
commit ce08276250
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ export interface BBRequest<RequestBody> extends Request {
export interface Ctx<RequestBody = any, ResponseBody = any> extends Context { export interface Ctx<RequestBody = any, ResponseBody = any> extends Context {
request: BBRequest<RequestBody> request: BBRequest<RequestBody>
body: ResponseBody body: ResponseBody
userAgent?: UserAgentContext["userAgent"] userAgent: UserAgentContext["userAgent"]
state: { nonce?: string } state: { nonce?: string }
} }