0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-22 11:17:33 +01:00

fix(context): export ExecutionContext from hono (#2346)

* fix(context): export `ExecutionContext` from `hono`

* denoify
This commit is contained in:
Yusuke Wada 2024-03-13 17:01:26 +09:00 committed by GitHub
parent 139e863aa2
commit 76864b43f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ export type {
ToSchema,
TypedResponse,
} from './types.ts'
export type { Context, ContextVariableMap, ContextRenderer } from './context.ts'
export type { Context, ContextVariableMap, ContextRenderer, ExecutionContext } from './context.ts'
export type { HonoRequest } from './request.ts'
export { Hono }
export { HTTPException } from './http-exception.ts'

View File

@ -14,7 +14,7 @@ export type {
ToSchema,
TypedResponse,
} from './types'
export type { Context, ContextVariableMap, ContextRenderer } from './context'
export type { Context, ContextVariableMap, ContextRenderer, ExecutionContext } from './context'
export type { HonoRequest } from './request'
export type { InferRequestType, InferResponseType, ClientRequestOptions } from './client'

View File

@ -20,7 +20,7 @@ export type {
ToSchema,
TypedResponse,
} from './types'
export type { Context, ContextVariableMap, ContextRenderer } from './context'
export type { Context, ContextVariableMap, ContextRenderer, ExecutionContext } from './context'
export type { HonoRequest } from './request'
export { Hono }
export { HTTPException } from './http-exception'