this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 }>;