Skip to content

Commit

Permalink
fix(context): export ExecutionContext from hono (#2346)
Browse files Browse the repository at this point in the history
* fix(context): export `ExecutionContext` from `hono`

* denoify
  • Loading branch information
yusukebe authored Mar 13, 2024
1 parent 139e863 commit 76864b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deno_dist/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down
2 changes: 1 addition & 1 deletion src/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 76864b4

Please sign in to comment.