From 7ba91208b93318362808f4bd590e15ea77a1712c Mon Sep 17 00:00:00 2001 From: Yusuke Wada Date: Mon, 27 Feb 2023 19:10:16 +0900 Subject: [PATCH] fix: add missing `MergePath` (#936) * fix: add missing `MergePath` * denoify --- deno_dist/types.ts | 6 +++--- src/types.ts | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/deno_dist/types.ts b/deno_dist/types.ts index 6ed3fa35..2c4e9ffc 100644 --- a/deno_dist/types.ts +++ b/deno_dist/types.ts @@ -119,7 +119,7 @@ export interface HandlerInterface< H, I2, O>, H, I3, O> ] - ): Hono>> + ): Hono, I3, O>>> // app.get(path, handler x4)

( @@ -130,7 +130,7 @@ export interface HandlerInterface< H, I3, O>, H, I4, O> ] - ): Hono>> + ): Hono, I4, O>>> // app.get(path, handler x5)

( @@ -142,7 +142,7 @@ export interface HandlerInterface< H, I4, O>, H, I5, O> ] - ): Hono>> + ): Hono, I5, O>>> // app.get(path, ...handlers[])

( diff --git a/src/types.ts b/src/types.ts index 65f80741..8419205d 100644 --- a/src/types.ts +++ b/src/types.ts @@ -119,7 +119,7 @@ export interface HandlerInterface< H, I2, O>, H, I3, O> ] - ): Hono>> + ): Hono, I3, O>>> // app.get(path, handler x4)

( @@ -130,7 +130,7 @@ export interface HandlerInterface< H, I3, O>, H, I4, O> ] - ): Hono>> + ): Hono, I4, O>>> // app.get(path, handler x5)

( @@ -142,7 +142,7 @@ export interface HandlerInterface< H, I4, O>, H, I5, O> ] - ): Hono>> + ): Hono, I5, O>>> // app.get(path, ...handlers[])

(