| 48 | >; |
| 49 | |
| 50 | export interface Account { |
| 51 | method: AuthMethod; |
| 52 | platform: PlatformType; |
| 53 | version?: string; |
| 54 | hostname: Hostname; |
| 55 | token: Token; |
| 56 | user: GitifyUser | null; |
| 57 | scopes?: string[]; |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * All Config Settings values to be stored in the application. |
nothing calls this directly
no outgoing calls
no test coverage detected