6 lines
120 B
TypeScript
6 lines
120 B
TypeScript
// src/global.d.ts
|
|
import type { Context as HonoContext } from "hono"
|
|
|
|
declare global {
|
|
type Context = HonoContext
|
|
} |