From fcdc6e3345c99e4d65099482ec5946f5ed17384f Mon Sep 17 00:00:00 2001 From: riflowth Date: Sat, 8 Oct 2022 16:07:28 +0700 Subject: [PATCH] hotfix: wrong type extraction of `Response` --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 914ad84..a8d8e82 100644 --- a/index.d.ts +++ b/index.d.ts @@ -164,7 +164,7 @@ export interface ApiSchema { export type Request = ExpressRequest; -export type Response = ExpressResponse; +export type Response = ExpressResponse; /** * For constructing API route schema by following the {@link ApiSchema} type.