| 56 | // --------------------------------------------------------------------------- |
| 57 | |
| 58 | export interface ServerProfile { |
| 59 | id: string; |
| 60 | name: string; |
| 61 | url: string; |
| 62 | token: string; |
| 63 | } |
| 64 | |
| 65 | export interface ServerProfilesState { |
| 66 | profiles: ServerProfile[]; |
nothing calls this directly
no outgoing calls
no test coverage detected