0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-29 17:46:30 +01:00
hono/deno_dist/mod.ts
rosahaj 5320ed6c57
fix(type): Export Schema type to allow route exports in declaration files (#1309)
* Export Schema type to allow route exports in declaration files

* Apply changes to src/mod.ts as well

* denoify
2023-08-11 07:05:51 +09:00

40 lines
1.0 KiB
TypeScript

import { Hono } from './hono.ts'
declare global {
interface ExecutionContext {
waitUntil(promise: Promise<void>): void
passThroughOnException(): void
}
}
export type {
Env,
ErrorHandler,
Handler,
MiddlewareHandler,
Next,
NotFoundHandler,
ValidationTargets,
Input,
Schema,
TypedResponse,
} from './types.ts'
export type { Context, ContextVariableMap } from './context.ts'
export type { HonoRequest } from './request.ts'
export { Hono }
export { HTTPException } from './http-exception.ts'
// Router
export { RegExpRouter } from './router/reg-exp-router/index.ts'
export { TrieRouter } from './router/trie-router/index.ts'
export { SmartRouter } from './router/smart-router/index.ts'
export { PatternRouter } from './router/pattern-router/index.ts'
export { LinearRouter } from './router/linear-router/index.ts'
// Validator
export { validator } from './validator/index.ts'
// Client
export { hc } from './client/index.ts'
export type { InferRequestType, InferResponseType, ClientRequestOptions } from './client/index.ts'