initial commit

This commit is contained in:
gulimabr
2025-11-28 12:33:37 -03:00
commit 5da54393ff
42 changed files with 3251 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
export interface User {
preferred_username: string
email: string | null
full_name: string | null
}
export interface AuthContextType {
user: User | null
isLoading: boolean
isAuthenticated: boolean
login: () => void
logout: () => Promise<void>
refreshUser: () => Promise<void>
}

View File

@@ -0,0 +1 @@
export * from './auth'