1import type { Hono } from "hono"; 2import type { Session } from "./lib/session"; 3 4export type AppVariables = { 5 session: Session; 6 csrfToken: string; 7}; 8 9export type App = Hono<{ Variables: AppVariables }>;