| 2 | import { User } from '../user'; |
| 3 | |
| 4 | export interface UserService { |
| 5 | status: Status; |
| 6 | login: Login; |
| 7 | register: Register; |
| 8 | update: Update; |
| 9 | requestReset: RequestReset; |
| 10 | resetPassword: ResetPassword; |
| 11 | } |
| 12 | |
| 13 | export interface AuthToken { |
| 14 | authToken: string; |
nothing calls this directly
no outgoing calls
no test coverage detected