Scratch space for learning atproto app development
1export type DatabaseSchema = { 2 post: Post 3 auth_session: AuthSession 4 auth_state: AuthState 5} 6 7export type Post = { 8 uri: string 9 text: string 10 indexedAt: string 11} 12 13export type AuthSession = { 14 key: string 15 session: AuthSessionJson 16} 17 18export type AuthState = { 19 key: string 20 state: AuthStateJson 21} 22 23type AuthStateJson = string 24 25type AuthSessionJson = string