this repo has no description
at main 9 lines 206 B view raw
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 }>;