| 34 | } |
| 35 | |
| 36 | export interface Account { |
| 37 | id: string; |
| 38 | userId: string; |
| 39 | type: string; |
| 40 | provider: string; |
| 41 | providerAccountId: string; |
| 42 | refresh_token: string | null; |
| 43 | refresh_token_expires_in: number | null; |
| 44 | access_token: string | null; |
| 45 | expires_at: number | null; |
| 46 | token_type: string | null; |
| 47 | scope: string | null; |
| 48 | id_token: string | null; |
| 49 | session_state: string | null; |
| 50 | } |
| 51 | |
| 52 | export interface ApiKey { |
| 53 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected