2022-07-02 06:09:45 +00:00
|
|
|
import { Hono } from './hono.ts'
|
|
|
|
|
|
|
|
declare global {
|
2023-01-31 21:36:48 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
|
|
// @ts-ignore
|
2022-07-17 09:36:42 +00:00
|
|
|
class ExtendableEvent extends Event {
|
|
|
|
constructor(type: string, init?: EventInit)
|
2022-12-02 02:28:49 +00:00
|
|
|
waitUntil(promise: Promise<void>): void
|
2022-07-17 09:36:42 +00:00
|
|
|
}
|
2023-01-31 21:36:48 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
|
|
// @ts-ignore
|
2022-07-17 09:36:42 +00:00
|
|
|
abstract class FetchEvent extends ExtendableEvent {
|
2022-07-02 06:09:45 +00:00
|
|
|
readonly request: Request
|
2022-07-17 09:36:42 +00:00
|
|
|
respondWith(promise: Response | Promise<Response>): void
|
|
|
|
passThroughOnException(): void
|
2022-07-02 06:09:45 +00:00
|
|
|
}
|
|
|
|
interface ExecutionContext {
|
2022-12-02 02:28:49 +00:00
|
|
|
waitUntil(promise: Promise<void>): void
|
2022-07-02 06:09:45 +00:00
|
|
|
passThroughOnException(): void
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-02 06:48:17 +00:00
|
|
|
export type {
|
2023-01-31 21:36:48 +00:00
|
|
|
Env,
|
2023-01-02 06:48:17 +00:00
|
|
|
ErrorHandler,
|
2023-02-02 20:56:59 +00:00
|
|
|
Handler,
|
2023-01-31 21:36:48 +00:00
|
|
|
MiddlewareHandler,
|
|
|
|
Next,
|
2023-01-02 06:48:17 +00:00
|
|
|
NotFoundHandler,
|
2023-02-13 21:21:30 +00:00
|
|
|
ValidationTargets,
|
2023-03-31 09:17:45 +00:00
|
|
|
Input,
|
2023-05-27 23:44:50 +00:00
|
|
|
TypedResponse,
|
2023-01-02 06:48:17 +00:00
|
|
|
} from './types.ts'
|
2022-12-28 02:25:48 +00:00
|
|
|
export type { Context, ContextVariableMap } from './context.ts'
|
2023-02-24 17:48:18 +00:00
|
|
|
export type { HonoRequest } from './request.ts'
|
2022-07-02 06:09:45 +00:00
|
|
|
export { Hono }
|
2023-05-02 07:37:24 +00:00
|
|
|
export { HTTPException } from './http-exception.ts'
|
2022-07-02 06:09:45 +00:00
|
|
|
|
|
|
|
// Router
|
|
|
|
export { RegExpRouter } from './router/reg-exp-router/index.ts'
|
|
|
|
export { TrieRouter } from './router/trie-router/index.ts'
|
2022-10-24 14:22:05 +00:00
|
|
|
export { SmartRouter } from './router/smart-router/index.ts'
|
2023-04-26 01:15:45 +00:00
|
|
|
export { PatternRouter } from './router/pattern-router/index.ts'
|
2023-05-24 07:05:50 +00:00
|
|
|
export { LinearRouter } from './router/linear-router/index.ts'
|
2023-02-10 16:18:27 +00:00
|
|
|
|
|
|
|
// Validator
|
|
|
|
export { validator } from './validator/index.ts'
|
|
|
|
|
|
|
|
// Client
|
|
|
|
export { hc } from './client/index.ts'
|
2023-05-27 23:44:50 +00:00
|
|
|
export type { InferRequestType, InferResponseType, ClientRequestOptions } from './client/index.ts'
|