| 3 | import { safeStorage } from "electron" |
| 4 | |
| 5 | export interface AuthUser { |
| 6 | id: string |
| 7 | email: string |
| 8 | name: string | null |
| 9 | imageUrl: string | null |
| 10 | username: string | null |
| 11 | } |
| 12 | |
| 13 | export interface AuthData { |
| 14 | token: string |
nothing calls this directly
no outgoing calls
no test coverage detected