WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
at atb-52-css-token-extraction 12 lines 208 B view raw
1import type { Agent } from "@atproto/api"; 2 3export interface AuthenticatedUser { 4 did: string; 5 handle: string; 6 pdsUrl: string; 7 agent: Agent; 8} 9 10export type Variables = { 11 user?: AuthenticatedUser; 12};