/// import { t } from 'wint-js'; export interface Context extends t.Context, Bun.ResponseInit { /** * The response body */ body?: any; } /** * A request handler */ export interface Handler { (c: Context): any; noValidation?: boolean; fallback?: Handler; }